mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-04 18:27:25 +00:00
GUI: add icon size setting
This commit is contained in:
parent
a27d68ad1d
commit
d582fce862
1 changed files with 4 additions and 0 deletions
|
@ -937,6 +937,10 @@ void FurnaceGUI::drawSettings() {
|
||||||
if (settings.patFontSize<3) settings.patFontSize=3;
|
if (settings.patFontSize<3) settings.patFontSize=3;
|
||||||
if (settings.patFontSize>96) settings.patFontSize=96;
|
if (settings.patFontSize>96) settings.patFontSize=96;
|
||||||
}
|
}
|
||||||
|
if (ImGui::InputInt("Icon size",&settings.iconSize)) {
|
||||||
|
if (settings.iconSize<3) settings.iconSize=3;
|
||||||
|
if (settings.iconSize>48) settings.iconSize=48;
|
||||||
|
}
|
||||||
|
|
||||||
bool loadJapaneseB=settings.loadJapanese;
|
bool loadJapaneseB=settings.loadJapanese;
|
||||||
if (ImGui::Checkbox("Display Japanese characters",&loadJapaneseB)) {
|
if (ImGui::Checkbox("Display Japanese characters",&loadJapaneseB)) {
|
||||||
|
|
Loading…
Reference in a new issue