[kate] [Bug 476565] Can't disable the popup menu when switching the tab list (Ctrl+Tab)

2023-11-22 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=476565

--- Comment #5 from moni...@tutanota.com ---
So will you add it in future versions? Or do I need to make changes to the file
myself? I can't find this file on my system using command: "find / -iname
katetabbar.cpp".

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

[kate] [Bug 476565] Can't disable the popup menu when switching the tab list (Ctrl+Tab)

2023-11-18 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=476565

--- Comment #4 from Christoph Cullmann  ---
In kate.git, apps/lib/katetabbar.cpp

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

[kate] [Bug 476565] Can't disable the popup menu when switching the tab list (Ctrl+Tab)

2023-11-16 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=476565

--- Comment #3 from moni...@tutanota.com ---
Thanks. In which file should these changes be made?

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

[kate] [Bug 476565] Can't disable the popup menu when switching the tab list (Ctrl+Tab)

2023-11-11 Thread Christoph Cullmann
https://bugs.kde.org/show_bug.cgi?id=476565

Christoph Cullmann  changed:

   What|Removed |Added

   Severity|normal  |wishlist
 CC||cullm...@kde.org

--- Comment #2 from Christoph Cullmann  ---
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.

[kate] [Bug 476565] Can't disable the popup menu when switching the tab list (Ctrl+Tab)

2023-11-04 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=476565

--- Comment #1 from moni...@tutanota.com ---
Created attachment 162871
  --> https://bugs.kde.org/attachment.cgi?id=162871=edit
Screenshot from Notepad++

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