@@ -409,7 +409,7 @@ fn workspace_orientation() -> Section<crate::pages::Message> {
409409 cosmic:: iced:: widget:: row!(
410410 text( & descriptions[ switch_workspace] ) ,
411411 cosmic:: iced:: widget:: horizontal_space( 2 ) ,
412- text( & descriptions[ switch_ws_label] ) . font( cosmic:: font:: FONT_BOLD ) ,
412+ text( & descriptions[ switch_ws_label] ) . font( cosmic:: font:: bold ( ) ) ,
413413 cosmic:: iced:: widget:: horizontal_space( Length :: Fill ) ,
414414 cosmic:: iced:: widget:: container( cosmic:: iced:: widget:: svg(
415415 switch_ws
@@ -425,7 +425,7 @@ fn workspace_orientation() -> Section<crate::pages::Message> {
425425 cosmic:: iced:: widget:: row!(
426426 text( & descriptions[ open_workspaces] ) ,
427427 cosmic:: iced:: widget:: horizontal_space( 2 ) ,
428- text( & descriptions[ open_ws_label] ) . font( cosmic:: font:: FONT_BOLD ) ,
428+ text( & descriptions[ open_ws_label] ) . font( cosmic:: font:: bold ( ) ) ,
429429 cosmic:: iced:: widget:: horizontal_space( Length :: Fill ) ,
430430 cosmic:: iced:: widget:: container( cosmic:: iced:: widget:: svg( open_ws) )
431431 . width( 115 )
@@ -441,7 +441,7 @@ fn workspace_orientation() -> Section<crate::pages::Message> {
441441 text( & descriptions[ open_applications] ) ,
442442 cosmic:: iced:: widget:: horizontal_space( 2 ) ,
443443 text( & descriptions[ open_app_label] )
444- . font( cosmic:: font:: FONT_BOLD ) ,
444+ . font( cosmic:: font:: bold ( ) ) ,
445445 cosmic:: iced:: widget:: horizontal_space( Length :: Fill ) ,
446446 cosmic:: iced:: widget:: container( cosmic:: iced:: widget:: svg(
447447 open_app
@@ -474,7 +474,8 @@ fn workspace_overview() -> Section<crate::pages::Message> {
474474 . descriptions ( descriptions)
475475 . view :: < Page > ( move |_binder, page, section| {
476476 let descriptions = & section. descriptions ;
477- settings:: view_section ( & section. title )
477+ settings:: section ( )
478+ . title ( & section. title )
478479 . add (
479480 settings:: item:: builder ( & descriptions[ show_number] )
480481 . toggler ( page. show_workspace_name , Message :: SetShowName ) ,
0 commit comments