diff options
| -rw-r--r-- | CHANGES | 1 | ||||
| -rw-r--r-- | test/sudoku.cxx | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,6 @@ CHANGES IN FLTK 1.1.8 + - Fixed Sudoku window positioning (STR #1398) - Fluid Code Declarations can now handle C++ style comments (STR #1383) - Fixed uninitialized data in OS X and WIN32 diff --git a/test/sudoku.cxx b/test/sudoku.cxx index 3120d0349..a328af8dd 100644 --- a/test/sudoku.cxx +++ b/test/sudoku.cxx @@ -714,7 +714,7 @@ Sudoku::Sudoku() prefs_.get("width", W, 3 * GROUP_SIZE); prefs_.get("height", H, 3 * GROUP_SIZE + MENU_OFFSET); - resize(X, X, W, H); + resize(X, Y, W, H); } set_title(); |
