diff options
Diffstat (limited to 'gui/widgets')
-rw-r--r-- | gui/widgets/scrollbar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/widgets/scrollbar.h b/gui/widgets/scrollbar.h index 9fdc94c396..ad7e83f52b 100644 --- a/gui/widgets/scrollbar.h +++ b/gui/widgets/scrollbar.h @@ -72,6 +72,7 @@ public: void handleMouseEntered(int button) { setFlags(WIDGET_HILITED); } void handleMouseLeft(int button) { clearFlags(WIDGET_HILITED); _part = kNoPart; markAsDirty(); } void handleTickle(); + bool wantsFocus() { return true; } // FIXME - this should be private, but then we also have to add accessors // for _numEntries, _entriesPerPage and _currentPos. This again leads to the question: |