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)
|
.align_items(Alignment::Center)
|
||||||
.spacing(12);
|
.spacing(12);
|
||||||
for (handle, info, img) in toplevels {
|
for (handle, info, img) in toplevels {
|
||||||
let title = if info.title.len() > 18 {
|
let title = if info.title.len() > 26 {
|
||||||
format!("{:.15}...", &info.title)
|
format!("{:.23}...", &info.title)
|
||||||
} else {
|
} else {
|
||||||
info.title.clone()
|
info.title.clone()
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue