diff --git a/src/apps/sudoku/SudokuView.cpp b/src/apps/sudoku/SudokuView.cpp index ffc3abf9cd..8ca884be5c 100644 --- a/src/apps/sudoku/SudokuView.cpp +++ b/src/apps/sudoku/SudokuView.cpp @@ -581,6 +581,11 @@ SudokuView::FrameResized(float /*width*/, float /*height*/) fHintFont.GetHeight(&fontHeight); fHintBaseline = ceilf(fontHeight.ascent) / 2 + (fHintHeight - ceilf(fontHeight.descent)) / 2; + + // fix the dragger's position + BView *dragger = FindView("_dragger_"); + if (dragger) + dragger->MoveTo(Bounds().right - 7, Bounds().bottom - 7); }