Summary: | How about 'hide menubar' in right click menu? | ||
---|---|---|---|
Product: | [Applications] konsole | Reporter: | Jose Hernandez <code> |
Component: | general | Assignee: | Konsole Developer <konsole-devel> |
Status: | RESOLVED INTENTIONAL | ||
Severity: | wishlist | ||
Priority: | NOR | ||
Version: | 1.3 Beta | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Jose Hernandez
2004-01-12 05:49:43 UTC
hiding the menubar alters the RMB menu much more and the task is to have a clean RMB menu not a crowded one I think there should be a Hide/Show menubar text. It is easy with the new setCheckedState in kdelibs CVS. I don't understand what Stephan means in comment #1. When the menubar is visible, the menu text is "Hide Menubar". When the menubar is hidden, the RMB has "Show Menubar". Makes sense to me.... --- konsole.cpp.orig 2004-02-10 01:46:34.252558584 -0500 +++ konsole.cpp 2004-02-10 01:51:01.448938560 -0500 @@ -419,6 +419,7 @@ { showMenubar->plug ( m_rightButton, index ); m_rightButton->insertSeparator( index+1 ); + showMenubar->setCheckedState( KGuiItem( "Hide &Menubar", "showmenu", QString::null, QString::null ) ); } index = 2; m_rightButton->setItemVisible(POPUP_NEW_SESSION_ID,true); O.K. I see that the original question was wanting to have a "Hide Menubar" in the RMB. |