diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-31 18:02:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-31 18:02:49 +0300 |
commit | 0249e0c48bfcac25abe46fbaf61103df0984b832 (patch) | |
tree | 5492ecae03d63e6847025522eb7ec6d39b71b699 /src/gui | |
parent | 21244d05278ca3a901bc0e0e34b8d0464563f264 (diff) | |
download | plus-0249e0c48bfcac25abe46fbaf61103df0984b832.tar.gz plus-0249e0c48bfcac25abe46fbaf61103df0984b832.tar.bz2 plus-0249e0c48bfcac25abe46fbaf61103df0984b832.tar.xz plus-0249e0c48bfcac25abe46fbaf61103df0984b832.zip |
By default show bank and mail buttons at top right corner.
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/windowmenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windowmenu.cpp b/src/gui/windowmenu.cpp index b1d225bf2..178c7f545 100644 --- a/src/gui/windowmenu.cpp +++ b/src/gui/windowmenu.cpp @@ -151,12 +151,12 @@ WindowMenu::WindowMenu(const Widget2 *const widget) : addButton(N_("BA"), // TRANSLATORS: full button name _("Bank"), x, h, InputAction::WINDOW_BANK, - Visible_false); + Visible_true); // TRANSLATORS: short button name for mail window. addButton(N_("MA"), // TRANSLATORS: full button name _("Mail"), x, h, InputAction::WINDOW_MAIL, - Visible_false), + Visible_true), // TRANSLATORS: short button name for debug window. addButton(N_("DBG"), // TRANSLATORS: full button name |