We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e39cd05 commit 94a6ff3Copy full SHA for 94a6ff3
src/main/kotlin/com/coder/toolbox/util/Dialogs.kt
@@ -1,5 +1,6 @@
1
package com.coder.toolbox.util
2
3
+import com.coder.toolbox.browser.BrowserUtil
4
import com.coder.toolbox.settings.CoderSettings
5
import com.coder.toolbox.settings.Source
6
import com.jetbrains.toolbox.api.ui.ToolboxUi
@@ -35,7 +36,9 @@ class DialogUi(
35
36
37
private fun openUrl(url: URL) {
38
// TODO - check this later
-// ui.openUrl(url.toString())
39
+ BrowserUtil.browse(url.toString()) {
40
+ ui.showErrorInfoPopup(it)
41
+ }
42
}
43
44
/**
0 commit comments