summaryrefslogtreecommitdiffstats
path: root/tools/qmlviewer/qmlviewer.cpp
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2009-09-22 07:52:07 (GMT)
committerAaron Kennedy <aaron.kennedy@nokia.com>2009-09-22 07:52:07 (GMT)
commit65e7073bb151bd9281b2d0be53f0c13cce90f3c0 (patch)
treef429294d99186b1cb50f2e0d64922c07fbdeda36 /tools/qmlviewer/qmlviewer.cpp
parent52920c5a1cabddb9d0e31a8ef91b741a8c38c69b (diff)
downloadQt-65e7073bb151bd9281b2d0be53f0c13cce90f3c0.zip
Qt-65e7073bb151bd9281b2d0be53f0c13cce90f3c0.tar.gz
Qt-65e7073bb151bd9281b2d0be53f0c13cce90f3c0.tar.bz2
Recording is now on F9
Diffstat (limited to 'tools/qmlviewer/qmlviewer.cpp')
-rw-r--r--tools/qmlviewer/qmlviewer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/qmlviewer/qmlviewer.cpp b/tools/qmlviewer/qmlviewer.cpp
index 2ac13cc..11d0ef0 100644
--- a/tools/qmlviewer/qmlviewer.cpp
+++ b/tools/qmlviewer/qmlviewer.cpp
@@ -348,7 +348,7 @@ void QmlViewer::createMenu(QMenuBar *menu, QMenu *flatmenu)
connect(snapshotAction, SIGNAL(triggered()), this, SLOT(takeSnapShot()));
recordMenu->addAction(snapshotAction);
- recordAction = new QAction(tr("Start Recording &Video\tF2"), parent);
+ recordAction = new QAction(tr("Start Recording &Video\tF9"), parent);
connect(recordAction, SIGNAL(triggered()), this, SLOT(toggleRecordingWithSelection()));
recordMenu->addAction(recordAction);
@@ -570,7 +570,7 @@ void QmlViewer::toggleRecording()
return;
}
bool recording = !recordTimer.isRunning();
- recordAction->setText(recording ? tr("&Stop Recording Video\tF2") : tr("&Start Recording Video\tF2"));
+ recordAction->setText(recording ? tr("&Stop Recording Video\tF9") : tr("&Start Recording Video\tF9"));
setRecording(recording);
}