Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set CSS name in class construct #184

Merged
merged 1 commit into from Sep 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/common/Widgets/VpnMenuItem.vala
Expand Up @@ -38,6 +38,10 @@ public class Network.VpnMenuItem : Gtk.ListBoxRow {
Object (connection: connection);
}

class construct {
set_css_name (Gtk.STYLE_CLASS_MENUITEM);
}

construct {
connection.changed.connect (update);

Expand Down Expand Up @@ -66,7 +70,6 @@ public class Network.VpnMenuItem : Gtk.ListBoxRow {
main_box.pack_start (error_img, false, false);

add (main_box);
get_style_context ().add_class (Gtk.STYLE_CLASS_MENUITEM);

notify["vpn_state"].connect (update);
radio_button.notify["active"].connect (update);
Expand Down
2 changes: 1 addition & 1 deletion src/common/Widgets/WifiMenuItem.vala
Expand Up @@ -103,7 +103,7 @@ public class Network.WifiMenuItem : Gtk.ListBoxRow {
radio_button = new Gtk.RadioButton (null);
}

construct {
class construct {
set_css_name (Gtk.STYLE_CLASS_MENUITEM);
}

Expand Down