mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-12 07:06:17 -05:00
Fix two typos.
This commit is contained in:
parent
ac690c138a
commit
6ec945204f
@ -1852,7 +1852,7 @@ void MainWindow::keyPressEvent (QKeyEvent * e)
|
||||
on_actionOpen_next_in_directory_triggered();
|
||||
return;
|
||||
case Qt::Key_F11:
|
||||
if((e->modifiers() & Qt::ControlModifier) and (e->modifiers() & Qt::ControlModifier)) {
|
||||
if((e->modifiers() & Qt::ControlModifier) and (e->modifiers() & Qt::ShiftModifier)) {
|
||||
m_bandEdited = true;
|
||||
band_changed(m_freqNominal-2000);
|
||||
// qDebug() << "Down" << m_freqNominal;
|
||||
@ -1867,7 +1867,7 @@ void MainWindow::keyPressEvent (QKeyEvent * e)
|
||||
}
|
||||
return;
|
||||
case Qt::Key_F12:
|
||||
if((e->modifiers() & Qt::ControlModifier) and (e->modifiers() & Qt::ControlModifier)) {
|
||||
if((e->modifiers() & Qt::ControlModifier) and (e->modifiers() & Qt::ShiftModifier)) {
|
||||
m_bandEdited = true;
|
||||
band_changed(m_freqNominal+2000);
|
||||
// qDebug() << "Up " << m_freqNominal;
|
||||
|
Loading…
Reference in New Issue
Block a user