summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2023-10-18 22:20:41 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2023-10-18 22:20:41 -0500
commite6036a34eafdc8705c886ddb5d79517845a984b0 (patch)
treec127c4f8ed2de6ac404a66b97a3ba745010120a4
parent37873f91e9dc4e28921db662bd208b492ca8e46f (diff)
downloadhorizon-e6036a34eafdc8705c886ddb5d79517845a984b0.tar.gz
horizon-e6036a34eafdc8705c886ddb5d79517845a984b0.tar.bz2
horizon-e6036a34eafdc8705c886ddb5d79517845a984b0.tar.xz
horizon-e6036a34eafdc8705c886ddb5d79517845a984b0.zip
Qt UI: Fix Netsurf invocation
netsurf-gtk was renamed netsurf-gtk3 as part of the switch from GTK 2, so we need to launch that binary. See-Also: adelie/packages@635178f5ca Fixes: #365
-rw-r--r--ui/qt5/intropage.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/qt5/intropage.cc b/ui/qt5/intropage.cc
index 76d7644..f36e1fb 100644
--- a/ui/qt5/intropage.cc
+++ b/ui/qt5/intropage.cc
@@ -53,7 +53,7 @@ IntroPage::IntroPage(QWidget *parent) : HorizonWizardPage(parent) {
});
connect(toolMenu->addAction("&Web Browser"), &QAction::triggered, [=](void){
QProcess *p = new QProcess(this);
- p->start("netsurf-gtk", QStringList());
+ p->start("netsurf-gtk3", QStringList());
horizonWizard()->tools.push_back(p);
});
toolButton->setMenu(toolMenu);