How does one create a round and suggested/destructive button in Gtk?
I have already tried using get_style_context() but it seems that I can only use it once. Is there a "CSS way" to achieve this?
pub fn make_rounded_button(label: &str) -> gtk::Button {
let btn = gtk::Button::new_with_label(label);
btn.get_style_context().add_class("circular");
btn.get_style_context().add_class("suggested-action"); // ineffective
btn
}