Fix collection item title Pango syntax
This commit is contained in:
parent
bdce351f0c
commit
ed18e738eb
2 changed files with 20 additions and 5 deletions
|
|
@ -1,9 +1,9 @@
|
|||
use {
|
||||
gtk4 :: {
|
||||
* ,
|
||||
Align :: * ,
|
||||
Orientation :: * ,
|
||||
gdk :: Texture ,
|
||||
Align :: * , Orientation :: * ,
|
||||
gdk :: * ,
|
||||
pango :: { * , Weight :: * } ,
|
||||
prelude :: * ,
|
||||
} ,
|
||||
std :: { cell :: * , iter :: * , path :: Path } ,
|
||||
|
|
@ -177,8 +177,8 @@ fn create_collection_item (
|
|||
|
||||
container . append (
|
||||
& Label :: builder ()
|
||||
. label ( format ! ( "<span size='large' weight='bold'>{}</span>" , name ) )
|
||||
. use_markup (true)
|
||||
. label (name)
|
||||
. attributes ( & pango_attributes ! ( @ scale : SCALE_LARGE , @ weight : Bold , ) )
|
||||
. justify ( Justification :: Center )
|
||||
. wrap (true)
|
||||
. max_width_chars (1) // Not the actual limit, used instead to wrap more aggressively
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue