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 6c17350 commit d9badbeCopy full SHA for d9badbe
src/PanelUI.js
@@ -83,11 +83,11 @@ export default function PanelUI({
83
"button_blueprint_documentation",
84
);
85
button_blueprint_documentation.connect("clicked", () => {
86
- Gtk.show_uri(
87
- null,
88
- "https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/",
89
90
- );
+ new Gtk.UriLauncher({
+ uri: "https://jwestman.pages.gitlab.gnome.org/blueprint-compiler/",
+ })
+ .launch(application.get_active_window(), null)
+ .catch(console.error);
91
});
92
93
let handler_id_xml = null;
0 commit comments