fix: remove with_alpha(false) from ColorDialog to bypass GTK4 popover sizing bug

This commit is contained in:
2026-08-03 23:20:13 -04:00
parent 9bd6189e10
commit 1e4154ab90
+1 -1
View File
@@ -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);