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::*;
3
3
4
4
pub fn main ( ) {
5
5
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 " ) ;
7
7
}
Original file line number Diff line number Diff line change 1
1
const basic_label = workbench . builder . get_object ( "basic_label" ) ;
2
2
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 6
6
7
7
basic_label : Gtk .Label = workbench .builder .get_object ("basic_label" )
8
8
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 2
2
3
3
public void main () {
4
4
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 " );
6
6
}
You can’t perform that action at this time.
0 commit comments