diff options
Diffstat (limited to 'gui/widgets/popup.h')
| -rw-r--r-- | gui/widgets/popup.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/gui/widgets/popup.h b/gui/widgets/popup.h index 37ddc276ad..d2b1f1cb92 100644 --- a/gui/widgets/popup.h +++ b/gui/widgets/popup.h @@ -77,8 +77,8 @@ public:  	uint32 getSelectedTag() const				{ return (_selectedItem >= 0) ? _entries[_selectedItem].tag : (uint32)-1; }  //	const String& getSelectedString() const		{ return (_selectedItem >= 0) ? _entries[_selectedItem].name : String::emptyString; } -	void handleMouseEntered(int button)	{ setFlags(WIDGET_HILITED); draw(); } -	void handleMouseLeft(int button)	{ clearFlags(WIDGET_HILITED); draw(); } +	void handleMouseEntered(int button)	{ setFlags(WIDGET_HILITED); markAsDirty(); } +	void handleMouseLeft(int button)	{ clearFlags(WIDGET_HILITED); markAsDirty(); }  	virtual void reflowLayout();  protected: | 
