Skip to content

Commit

Permalink
Fix resolution dropdown in the launcher
Browse files Browse the repository at this point in the history
  • Loading branch information
akortunov committed Nov 26, 2023
1 parent d1fc34a commit c945735
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/launcher/graphicspage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -309,11 +309,11 @@ QStringList Launcher::GraphicsPage::getAvailableResolutions(int screen)
QString aspect = getAspect(mode.w, mode.h);
if (aspect == QLatin1String("16:9") || aspect == QLatin1String("16:10"))
{
resolution.append(tr("\t(Wide ") + aspect + ")");
resolution.append(tr(" (Wide ") + aspect + ")");
}
else if (aspect == QLatin1String("4:3"))
{
resolution.append(tr("\t(Standard 4:3)"));
resolution.append(tr(" (Standard 4:3)"));
}

result.append(resolution);
Expand Down

0 comments on commit c945735

Please sign in to comment.