From 48d8ff92758f596a2200fe7229c9b7337f39944a Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 20 Mar 2023 15:55:48 +0100 Subject: [PATCH] Slightly reduce SC GUI height This makes the bottom edge align better. --- plugins/spectral_compressor/src/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/spectral_compressor/src/editor.rs b/plugins/spectral_compressor/src/editor.rs index 1e1978f0..73abb339 100644 --- a/plugins/spectral_compressor/src/editor.rs +++ b/plugins/spectral_compressor/src/editor.rs @@ -36,7 +36,7 @@ const EXPANDED_GUI_WIDTH: u32 = 1360; /// The width of the GUI's main part containing the controls. const COLLAPSED_GUI_WIDTH: u32 = 680; /// The entire GUI's height, in logical pixels. -const GUI_HEIGHT: u32 = 535; +const GUI_HEIGHT: u32 = 530; // I couldn't get `LayoutType::Grid` to work as expected, so we'll fake a 4x4 grid with // hardcoded column widths const COLUMN_WIDTH: Units = Pixels(330.0);