Skip to content
This repository was archived by the owner on Sep 27, 2024. It is now read-only.

Commit f4aaae1

Browse files
authored
Merge pull request #269 from matejak/appname
Removed the app org domain definition.
2 parents 9bcb47d + a46e69c commit f4aaae1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Application.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,12 @@ Application::Application(int& argc, char** argv):
3535
mMainWindow(0)
3636
{
3737
setOrganizationName("SCAP Workbench upstream");
38-
setOrganizationDomain("https://www.open-scap.org/tools/scap-workbench");
38+
// The org domain messes up the app title in the Gnome top bar.
39+
// Other QT apps s.a. Wireshark, QT Creator don't specify the domain.
40+
// setOrganizationDomain("open-scap.org");
3941

4042
setApplicationName("SCAP Workbench");
43+
setApplicationDisplayName("SCAP Workbench");
4144
setApplicationVersion(SCAP_WORKBENCH_VERSION);
4245

4346
mMainWindow = new MainWindow();

0 commit comments

Comments
 (0)