diff options
Diffstat (limited to 'src/gui/windows/serverdialog.cpp')
-rw-r--r-- | src/gui/windows/serverdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/serverdialog.cpp b/src/gui/windows/serverdialog.cpp index a8895cad9..dfe7d3052 100644 --- a/src/gui/windows/serverdialog.cpp +++ b/src/gui/windows/serverdialog.cpp @@ -157,7 +157,7 @@ public: mHighlightColor = getThemeColor(Theme::HIGHLIGHT); } - void draw(gcn::Graphics *graphics) override + void draw(gcn::Graphics *graphics) override final { if (!mListModel) return; @@ -231,7 +231,7 @@ public: } } - unsigned int getRowHeight() const override + unsigned int getRowHeight() const override final { return 2 * getFont()->getHeight() + 5; } |