diff -r f94317a94db1 -r e2a80d9b5858 mainwindow.cpp --- a/mainwindow.cpp Thu Jul 06 14:47:01 2006 +0000 +++ b/mainwindow.cpp Thu Jul 06 15:39:54 2006 +0000 @@ -668,23 +668,24 @@ a->setShortcut (Qt::CTRL + Qt::Key_U ); a->setShortcut (tr( "Open URL" )); tb->addAction (a); - a->setEnabled (false); + addAction(a); connect( a, SIGNAL( activated() ), this, SLOT( editOpenURL() ) ); actionEditOpenURL=a; a = new QAction( tr( "Open URL in new tab" ), this); a->setStatusTip (tr( "Open URL in new tab" )); a->setShortcut (Qt::CTRL+Qt::Key_U ); - a->setEnabled (false); + addAction(a); connect( a, SIGNAL( activated() ), this, SLOT( editOpenURLTab() ) ); actionEditOpenURLTab=a; a = new QAction(QPixmap(), tr( "Edit URL"+QString("...") ), this); a->setStatusTip ( tr( "Edit URL" ) ); - a->setShortcut (Qt::SHIFT + Qt::CTRL+Qt::Key_U ); + a->setShortcut (Qt::SHIFT + Qt::CTRL + Qt::Key_U ); + //a->setShortcut ( Qt::Key_U ); a->setShortcutContext (Qt::WindowShortcut); - a->setEnabled (false); actionListBranches.append(a); + addAction(a); connect( a, SIGNAL( activated() ), this, SLOT( editURL() ) ); actionEditURL=a;