From 1e4154ab90c52c781ca8999f806f1216cf7bb84d Mon Sep 17 00:00:00 2001 From: rootiest Date: Mon, 3 Aug 2026 23:20:13 -0400 Subject: [PATCH] fix: remove with_alpha(false) from ColorDialog to bypass GTK4 popover sizing bug --- src/ui/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/editor.rs b/src/ui/editor.rs index a71c3c4..b23173d 100644 --- a/src/ui/editor.rs +++ b/src/ui/editor.rs @@ -209,7 +209,7 @@ pub fn build_editor_page( label.set_xalign(0.0); let rgba = gtk::gdk::RGBA::parse(&hex).unwrap_or(gtk::gdk::RGBA::BLACK); - let dialog = ColorDialog::builder().with_alpha(false).build(); + let dialog = ColorDialog::builder().build(); let button = ColorDialogButton::new(Some(dialog)); button.set_rgba(&rgba);