bidi fix. Patch by Diego Iastrubni <iastrubn@actcom.co.il>

svn path=/trunk/kdenetwork/kmail/; revision=193084
wilder-work
Marc Mutz 24 years ago
parent 4f6c6d10b2
commit e01df639a7
  1. 6
      kmmainwin.cpp

@ -2658,7 +2658,8 @@ void KMMainWin::setupMenuBar()
"N;Right", this, SLOT(slotNextMessage()),
actionCollection(), "go_next_message" );
new KAction( KGuiItem( i18n("Next &Unread Message"), "next",
new KAction( KGuiItem( i18n("Next &Unread Message"),
QApplication::reverseLayout() ? "previous" : "next",
i18n("Go to the next unread message") ),
Key_Plus, this, SLOT(slotNextUnreadMessage()),
actionCollection(), "go_next_unread_message" );
@ -2675,7 +2676,8 @@ void KMMainWin::setupMenuBar()
"P;Left", this, SLOT(slotPrevMessage()),
actionCollection(), "go_prev_message" );
new KAction( KGuiItem( i18n("Previous Unread &Message"), "previous",
new KAction( KGuiItem( i18n("Previous Unread &Message"),
QApplication::reverseLayout() ? "next" : "previous",
i18n("Go to the previous unread message") ),
Key_Minus, this, SLOT(slotPrevUnreadMessage()),
actionCollection(), "go_prev_unread_message" );

Loading…
Cancel
Save