diff options
| author | Matthias Melcher <fltk@matthiasm.com> | 2006-08-23 11:34:36 +0000 |
|---|---|---|
| committer | Matthias Melcher <fltk@matthiasm.com> | 2006-08-23 11:34:36 +0000 |
| commit | b179cc108a13de01651a91a7a13d961de134ec77 (patch) | |
| tree | 73226d29c7934a53f2eeb21be54a95489072edc2 | |
| parent | 17428cce3e9a10cf627eba282cb7b904a20eccf2 (diff) | |
Fixed Sudoku window positioning (STR #1398)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5344 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -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(); |
