https://bugs.kde.org/show_bug.cgi?id=476565

Christoph Cullmann <cullm...@kde.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |wishlist
                 CC|                            |cullm...@kde.org

--- Comment #2 from Christoph Cullmann <cullm...@kde.org> ---
Valid wish to have that, we would need to make


int KateTabBar::prevTab() const
{
    return currentIndex() == 0 ? 0 // first index, keep it here.
                               : currentIndex() - 1;
}

int KateTabBar::nextTab() const
{
    return currentIndex() == count() - 1 ? count() - 1 // last index, keep it
here.
                                         : currentIndex() + 1;
}

configurable.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to