Skip to content

Commit

Permalink
Changed max value for FontSize
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-r-elp committed Feb 7, 2021
1 parent dda2aae commit 9f2f6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ClockViewContoller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void ClockMod::ClockViewController::DidActivate(bool firstActivation, bool added
// Change Size
auto onFontSizeChange = il2cpp_utils::MakeDelegate<UnityEngine::Events::UnityAction_1<float>*>(
classof(UnityEngine::Events::UnityAction_1<float>*), this, SetFontSize); // Decimal places Value Steps Min Value Max Value
QuestUI::IncrementSetting* FontIncrementObject = QuestUI::BeatSaberUI::CreateIncrementSetting(container->get_transform(), "Font Size", 1, 0.1, getConfig().config["FontSize"].GetFloat(), 1.0f, 8.0f, onFontSizeChange);
QuestUI::IncrementSetting* FontIncrementObject = QuestUI::BeatSaberUI::CreateIncrementSetting(container->get_transform(), "Font Size", 1, 0.1, getConfig().config["FontSize"].GetFloat(), 1.0f, 5.0f, onFontSizeChange);
QuestUI::BeatSaberUI::AddHoverHint(FontIncrementObject->get_gameObject(), "Changes the Font Size of the Clock (Default: 4)");
// Show Battery Percentage
auto onBattSettingChange = il2cpp_utils::MakeDelegate<UnityEngine::Events::UnityAction_1<bool>*>(
Expand Down

0 comments on commit 9f2f6e0

Please sign in to comment.