File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,5 +3,5 @@ use gtk::prelude::*;
33
44pub fn main ( ) {
55 let basic_label: gtk:: Label = workbench:: builder ( ) . object ( "basic_label" ) . unwrap ( ) ;
6- basic_label. add_css_class ( "css_text " ) ;
6+ basic_label. add_css_class ( "my_custom_class " ) ;
77}
Original file line number Diff line number Diff line change 11const basic_label = workbench . builder . get_object ( "basic_label" ) ;
22
3- basic_label . add_css_class ( "css_text " ) ;
3+ basic_label . add_css_class ( "my_custom_class " ) ;
Original file line number Diff line number Diff line change 66
77basic_label : Gtk .Label = workbench .builder .get_object ("basic_label" )
88
9- basic_label .add_css_class ("css_text " )
9+ basic_label .add_css_class ("my_custom_class " )
Original file line number Diff line number Diff line change 22
33public void main () {
44 var basic_label = (Gtk . Label ) workbench. builder. get_object (" basic_label" );
5- basic_label. add_css_class (" css_text " );
5+ basic_label. add_css_class (" my_custom_class " );
66}
You can’t perform that action at this time.
0 commit comments