summaryrefslogtreecommitdiff
diff options
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2014-05-14 03:48:09 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2014-05-14 03:48:09 +0200
commit2427ddd0d8df3e39f4c229db69aa991a0c231ed3 (patch)
tree3a2a130abf1bfa975f71fb2352389226bae59add
parent6c4c032050bcf8504e1e3c62ed1c2904575b8909 (diff)
ShortcutView: increase max column widths to make sure they will work with big text
(bzr r3794.8.7)
-rw-r--r--shortcuts/ShortcutView.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/shortcuts/ShortcutView.cpp b/shortcuts/ShortcutView.cpp
index 04ca2dc4f..dbfcd9613 100644
--- a/shortcuts/ShortcutView.cpp
+++ b/shortcuts/ShortcutView.cpp
@@ -40,9 +40,9 @@ namespace
const unsigned SHORTKEY_ENTRY_FONT_SIZE = 9;
const RawPixel INTER_SPACE_SHORTKEY_DESCRIPTION = 10_em;
const RawPixel SHORTKEY_COLUMN_DEFAULT_WIDTH = 150_em;
- const RawPixel SHORTKEY_COLUMN_MAX_WIDTH = 300_em;
+ const RawPixel SHORTKEY_COLUMN_MAX_WIDTH = 350_em;
const RawPixel DESCRIPTION_COLUMN_DEFAULT_WIDTH = 265_em;
- const RawPixel DESCRIPTION_COLUMN_MAX_WIDTH = 450_em;
+ const RawPixel DESCRIPTION_COLUMN_MAX_WIDTH = 500_em;
const RawPixel LINE_SPACING = 3_em;
const RawPixel MAIN_HORIZONTAL_PADDING = 30_em;
const RawPixel MAIN_VERTICAL_PADDING = 18_em;