diff options
author | Maximilien Cuony <maximilien@theglu.org> | 2016-06-12 21:17:05 +0200 |
---|---|---|
committer | Maximilien Cuony <maximilien@theglu.org> | 2016-06-12 21:17:05 +0200 |
commit | 239a66e0d44c88164be8134cbd9d65f4fdd7e770 (patch) | |
tree | 4ef9822f224bc3df0323381b8792db95a6eecbe0 /src | |
parent | 71964aa1b61d77c32fec47b9bbdd33a3c1916f03 (diff) | |
download | glutte-o-matic-239a66e0d44c88164be8134cbd9d65f4fdd7e770.tar.gz glutte-o-matic-239a66e0d44c88164be8134cbd9d65f4fdd7e770.tar.bz2 glutte-o-matic-239a66e0d44c88164be8134cbd9d65f4fdd7e770.zip |
On ne peux pas redimensionner la fenĂȘtre "FSM" :-(
Diffstat (limited to 'src')
-rw-r--r-- | src/simulator/src/Gui/gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simulator/src/Gui/gui.c b/src/simulator/src/Gui/gui.c index c6a6e7f..724e3e9 100644 --- a/src/simulator/src/Gui/gui.c +++ b/src/simulator/src/Gui/gui.c @@ -836,7 +836,7 @@ void main_gui() { } nk_end(ctx); - if (nk_begin(ctx, &layout, "FSM", nk_rect(880, 200, 200, 350), NK_WINDOW_BORDER|NK_WINDOW_MOVABLE|NK_WINDOW_MINIMIZABLE|NK_WINDOW_TITLE)) { + if (nk_begin(ctx, &layout, "FSM", nk_rect(880, 200, 200, 350), NK_WINDOW_BORDER|NK_WINDOW_MOVABLE|NK_WINDOW_MINIMIZABLE|NK_WINDOW_SCALABLE|NK_WINDOW_TITLE)) { nk_layout_row_dynamic(ctx, 25, 2); |