summaryrefslogtreecommitdiff
path: root/fluid/custom_widgets.cxx
diff options
context:
space:
mode:
authorMatthias Melcher <github@matthiasm.com>2023-07-17 20:20:54 +0200
committerMatthias Melcher <github@matthiasm.com>2023-07-17 20:21:04 +0200
commit9bdc7139daef8d9dc7b7e06503cd810d44b6d69c (patch)
treebd4fb30d1a2c539a3eb530eb14d1780a9e04db78 /fluid/custom_widgets.cxx
parent9794d200b33b438feaf76c960e464b90dd911d58 (diff)
FLUID: better initial sizes for buttons and windows
Diffstat (limited to 'fluid/custom_widgets.cxx')
-rw-r--r--fluid/custom_widgets.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/fluid/custom_widgets.cxx b/fluid/custom_widgets.cxx
index f1a12a474..f3b374314 100644
--- a/fluid/custom_widgets.cxx
+++ b/fluid/custom_widgets.cxx
@@ -92,7 +92,7 @@ int Widget_Bin_Window_Button::handle(int inEvent)
return ret;
if (!Fl::event_is_click()) {
if (!drag_win) {
- drag_win = new Fl_Window(0, 0, 100, 100);
+ drag_win = new Fl_Window(0, 0, 480, 320);
drag_win->border(0);
drag_win->set_non_modal();
}