Skip to content

Commit

Permalink
[Sizing] Fixup calc of launcer icon size
Browse files Browse the repository at this point in the history
  • Loading branch information
neochapay committed Dec 16, 2019
1 parent ed57c9e commit 27c7570
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controls/sizing.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ Sizing::Sizing(QObject *parent) : QObject(parent)
if(m_width >= 2160){
//>2160
m_launcher_icon_size = 256;
}else if (m_width >= 1080){
}else if (m_width >= 1080 && m_width < 2160){
//1080-2159
m_launcher_icon_size = 128;
}else if(m_width >= 720){
}else if(m_width >= 720 && m_width < 1080){
//720-1079
m_launcher_icon_size = 108;
}else {
Expand Down

0 comments on commit 27c7570

Please sign in to comment.