Skip to content

Commit

Permalink
Added ability to customize the tint color of the overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
shai-almog committed Jul 9, 2022
1 parent e8d2068 commit c285864
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CodenameOne/src/com/codename1/ui/Toolbar.java
Original file line number Diff line number Diff line change
Expand Up @@ -2192,7 +2192,7 @@ protected Command showOverflowMenu(Dialog menu) {
marginLeft = 0;
}
int tint = parent.getTintColor();
parent.setTintColor(0x00FFFFFF);
parent.setTintColor(manager.getThemeConstant("overflowTintColorInt", 0x00FFFFFF));
parent.tint = false;
boolean showBelowTitle = manager.isThemeConstant("showMenuBelowTitleBool", true);
int topPadding = 0;
Expand Down

0 comments on commit c285864

Please sign in to comment.