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) 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