fix: increase character allowance for window preview title
This commit is contained in:
parent
a4842f0cf9
commit
63c2bcc99b
1 changed files with 2 additions and 2 deletions
|
|
@ -1380,8 +1380,8 @@ impl cosmic::Application for CosmicAppList {
|
|||
.align_items(Alignment::Center)
|
||||
.spacing(12);
|
||||
for (handle, info, img) in toplevels {
|
||||
let title = if info.title.len() > 18 {
|
||||
format!("{:.15}...", &info.title)
|
||||
let title = if info.title.len() > 26 {
|
||||
format!("{:.23}...", &info.title)
|
||||
} else {
|
||||
info.title.clone()
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue