Skip to content

Commit

Permalink
GUI - don't use fancy ⇧ char unless on Mac
Browse files Browse the repository at this point in the history
  • Loading branch information
samaaron committed Jul 29, 2015
1 parent 5d47dbd commit 5435cd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/gui/qt/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,7 @@ char MainWindow::int2char(int i){
#ifdef Q_OS_MAC
return QString("%1 (⇧⌘%2)").arg(str).arg(key);
#else
return QString("%1 (-alt-%2)").arg(str).arg(key);
return QString("%1 (Shift-alt-%2)").arg(str).arg(key);
#endif
}

Expand Down

0 comments on commit 5435cd1

Please sign in to comment.