From 4905dd50151ef92efcf16d02788b61bc8ef2b977 Mon Sep 17 00:00:00 2001 From: Sw2ft <147743626+Sw2ft@users.noreply.github.com> Date: Wed, 15 Oct 2025 13:05:14 +0200 Subject: [PATCH 1/2] Update GUI.lua --- brute-seq/Modules/GUI.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brute-seq/Modules/GUI.lua b/brute-seq/Modules/GUI.lua index 634f698..f218c54 100644 --- a/brute-seq/Modules/GUI.lua +++ b/brute-seq/Modules/GUI.lua @@ -86,7 +86,7 @@ function drawSlider(ctx, label, value, minVal, maxVal, width) -- Draw slider reaper.ImGui_PushItemWidth(ctx, width) - reaper.ImGui_PushFont(ctx, fontSmall) + reaper.ImGui_PushFont(ctx, fontSmall, fontSize) local changed, newVal = reaper.ImGui_SliderInt(ctx, label, value, minVal, maxVal) From 7df6e9fed92814b0d5a58440e45fc5a2c07fa3af Mon Sep 17 00:00:00 2001 From: Sw2ft <147743626+Sw2ft@users.noreply.github.com> Date: Wed, 15 Oct 2025 13:05:49 +0200 Subject: [PATCH 2/2] Update brute-seq.lua --- brute-seq/brute-seq.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brute-seq/brute-seq.lua b/brute-seq/brute-seq.lua index 6829460..e14cf01 100644 --- a/brute-seq/brute-seq.lua +++ b/brute-seq/brute-seq.lua @@ -225,7 +225,7 @@ local function addMenuBar() end local function loop() - reaper.ImGui_PushFont(ctx, font) + reaper.ImGui_PushFont(ctx, font, 12) reaper.ImGui_SetNextWindowSize(ctx, 900, 420, reaper.ImGui_Cond_FirstUseEver()) visible, open = reaper.ImGui_Begin(ctx, 'BRUTE SEQ', true, reaper.ImGui_WindowFlags_MenuBar()) if visible then