removed unconsolidated shortcuts in the menu.

svn path=/trunk/kdebase/konsole/; revision=11984
This commit is contained in:
Lars Doelle
1998-10-31 22:35:59 +00:00
parent 08dd828728
commit b2b56d2e77

View File

@@ -250,16 +250,18 @@ void TEDemo::makeMenu()
m_options->installEventFilter( this );
menubar->insertItem(i18n("&File") , m_file);
// For those how like to add shortcuts here, be aware that ALT-Key
// combinations might be uses heavily by many programs. Thus activating
// shortcuts here means to deactivate them in many other programs.
//FIXME: deactivated mainly because it flickers like crasy
// appears to do well otherwise
menubar->insertItem(i18n("&New"), m_commands);
menubar->insertItem(i18n("&Sessions"), m_sessions);
menubar->insertItem(i18n("File") , m_file);
menubar->insertItem(i18n("&Options"), m_options);
menubar->insertItem(i18n("New"), m_commands);
menubar->insertItem(i18n("Sessions"), m_sessions);
menubar->insertItem(i18n("Options"), m_options);
menubar->insertSeparator();
menubar->insertItem(i18n("&Help"), m_help);
menubar->insertItem(i18n("Help"), m_help);
}
/* ------------------------------------------------------------------------- */