Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Open sidebar
LordTermor
Pamac tray icon for plasma
Commits
e2369bc6
Commit
e2369bc6
authored
Aug 31, 2020
by
LordTermor
Browse files
Fixed app close on icon hiding
parent
e7d56107
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
main.cpp
main.cpp
+3
-2
No files found.
main.cpp
View file @
e2369bc6
...
...
@@ -8,12 +8,13 @@ int main(int argc, char *argv[])
if
(
!
guard
.
tryToRun
()){
return
0
;
}
notify_init
(
"Package Manager"
);
QApplication
a
(
argc
,
argv
);
notify_init
(
"Package Manager"
);
QApplication
::
setQuitOnLastWindowClosed
(
false
);
PamacTray
tray
;
tray
.
show
();
return
a
.
exec
();
return
QApplication
::
exec
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment