summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2024-03-02 19:41:51 +0100
committerMatthias Melcher <github@matthiasm.com>2024-03-02 19:41:51 +0100
commitc9f54ad744c57789bfba1c28c945502463f3c845 (patch)
treebe993748588c95a3838dc356cfcd13d7e29b56ee
parentb74099c5fdb3fcbe7a6b89fc05069e219f7fb36c (diff)
fltk-options: enlarge text area for Linux fonts
-rw-r--r--fltk-options/fltk-options.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fltk-options/fltk-options.cxx b/fltk-options/fltk-options.cxx
index 526e1d680..b1dec34d0 100644
--- a/fltk-options/fltk-options.cxx
+++ b/fltk-options/fltk-options.cxx
@@ -37,7 +37,7 @@ const int FO_GAP = 10;
const int FO_BROWSER_W = 200;
const int FO_SCROLL_W = 16 + 4; //Fl::scrollbar_size() + Fl::box_dw(FL_DOWN_BOX);
const int FO_CHOICE_W = 75;
-const int FO_OPTIONS_W = 380;
+const int FO_OPTIONS_W = 420;
const int FO_BUTTON_W = 75;
const int FO_WINDOW_W = FO_GAP + FO_BROWSER_W + FO_GAP + FO_SCROLL_W + FO_OPTIONS_W + FO_SCROLL_W + FO_GAP;
const int FO_SYSTEM_X = FO_OPTIONS_W - 2*FO_GAP - 2*FO_CHOICE_W;