From 2be8214908c52298ba79c8058d340edca5a8b417 Mon Sep 17 00:00:00 2001 From: zautrix Date: Mon, 13 Jun 2005 07:32:41 +0000 Subject: fixes --- (limited to 'korganizer/mainwindow.cpp') diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index 0cb0bce..95e1607 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp @@ -787,7 +787,8 @@ void MainWindow::initActions() mToggleNav = action ; icon = loadPixmap( pathString + "filter" ); configureToolBarMenu->insertItem(icon, i18n("Filter menu icon"), 26 ); - action = new QAction( i18n("Toggle FilterView"), icon, i18n("Toggle FilterView"), 0, this ); + icon = loadPixmap( pathString + "configure" ); + action = new QAction( i18n("Toggle Resource View"), icon, i18n("Toggle Resource View"), 0, this ); action->addTo( viewMenu ); connect( action, SIGNAL( activated() ), mView, SLOT( toggleFilter() ) ); @@ -1488,7 +1489,7 @@ void MainWindow::keyBindings() i18n("

A+(shift or ctrl): Show occurence of next alarm

\n") + i18n("

I: Show info for selected event/todo

\n") + i18n("

Space: Toggle fullscreen | P: Date picker

\n")+ - i18n("

F: Toggle filterview |F+ctrl: Edit filter

\n")+ + i18n("

R: Toggle Resource View |F: Edit filter

\n")+ i18n("

O: Filter On/Off | J: Journal view

\n")+ i18n("

1-0 (+ctrl): Select filter 1-10 (11-20)

\n")+ i18n("

X: Next X days view| W: What's next view\n ")+ @@ -1987,10 +1988,10 @@ void MainWindow::keyPressEvent ( QKeyEvent * e ) mView->showDatePicker( ); break; case Qt::Key_F: - if ( e->state() == Qt::ControlButton|| e->state() == Qt::ShiftButton ) - mView->editFilters(); - else - mView->toggleFilter(); + mView->editFilters(); + break; + case Qt::Key_R: + mView->toggleFilter(); break; case Qt::Key_X: if ( e->state() == Qt::ControlButton ) -- cgit v0.9.0.2