Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
696ae7e8
Commit
696ae7e8
authored
Dec 19, 2015
by
Fabio Bas
Browse files
Add gear icon to settings menu entry
parent
7e6972a3
Changes
2
Hide whitespace changes
Inline
Side-by-side
cockatrice/src/main.cpp
View file @
696ae7e8
...
...
@@ -132,6 +132,10 @@ int main(int argc, char *argv[])
QCoreApplication
::
setOrganizationDomain
(
"cockatrice.de"
);
QCoreApplication
::
setApplicationName
(
"Cockatrice"
);
#ifdef Q_OS_MAC
qApp
->
setAttribute
(
Qt
::
AA_DontShowIconsInMenus
,
true
);
#endif
#ifdef Q_OS_MAC
translationPath
=
qApp
->
applicationDirPath
()
+
"/../Resources/translations"
;
#elif defined(Q_OS_WIN)
...
...
cockatrice/src/window_main.cpp
View file @
696ae7e8
...
...
@@ -485,6 +485,7 @@ void MainWindow::retranslateUi()
aFullScreen
->
setText
(
tr
(
"&Full screen"
));
aRegister
->
setText
(
tr
(
"&Register to server..."
));
aSettings
->
setText
(
tr
(
"&Settings..."
));
aSettings
->
setIcon
(
QPixmap
(
"theme:icons/settings"
));
aExit
->
setText
(
tr
(
"&Exit"
));
#if defined(__APPLE__)
/* For OSX */
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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