mirror of
https://github.com/KDE/konsole.git
synced 2026-05-04 12:44:23 -04:00
Add action to jump to last tab.
Allows user to select a shortcut to jump to the far right tab. There is no default shortcut. Patch by Francesco Cecconi <francesco.cecconi@gmail.com> REVIEW: 102687 BUG: 279166 FIXED-IN: 4.8
This commit is contained in:
@@ -228,6 +228,11 @@ void ViewContainer::activateNextView()
|
||||
setActiveView( _views.at(index) );
|
||||
}
|
||||
|
||||
void ViewContainer::activateLastView()
|
||||
{
|
||||
setActiveView(_views.at(_views.count()-1));
|
||||
}
|
||||
|
||||
void ViewContainer::activatePreviousView()
|
||||
{
|
||||
QWidget* active = activeView();
|
||||
|
||||
Reference in New Issue
Block a user