Skip to content

Commit

Permalink
Warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hrydgard committed Dec 11, 2023
1 parent 6d51fbc commit ae1009c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common/UI/UIScreen.h
Expand Up @@ -111,7 +111,7 @@ class PopupScreen : public UIDialogScreen {
void SetHasDropShadow(bool has) { hasDropShadow_ = has; }

// For the postproc param sliders on DisplayLayoutScreen
bool wantBrightBackground() const { return !hasDropShadow_; }
bool wantBrightBackground() const override { return !hasDropShadow_; }

protected:
virtual bool FillVertical() const { return false; }
Expand Down

0 comments on commit ae1009c

Please sign in to comment.