Skip to content

Commit

Permalink
Fix a copy-paste mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
jyrkive committed Nov 26, 2017
1 parent 8a74ee4 commit 13f216c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/dialogs/preferences_dialog.cpp
Expand Up @@ -129,7 +129,7 @@ void preferences_dialog::set_resolution_list(menu_button& res_list, CVideo& vide
const int y_ratio = res.y / div;

if(x_ratio <= 10 || y_ratio <= 10) {
option["details"] = formatter() << "<span color='#777777'>(" << y_ratio << ':' << y_ratio << ")</span>";
option["details"] = formatter() << "<span color='#777777'>(" << x_ratio << ':' << y_ratio << ")</span>";
}

options.push_back(std::move(option));
Expand Down

0 comments on commit 13f216c

Please sign in to comment.