Skip to content

Commit

Permalink
Fixed Sudoku window positioning (STR #1398)
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5344 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
Matthias Melcher committed Aug 23, 2006
1 parent 17428cc commit b179cc1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion test/sudoku.cxx
Expand Up @@ -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();
Expand Down

0 comments on commit b179cc1

Please sign in to comment.