| Summary: | Tabs "Text only" mode unavailable | ||
|---|---|---|---|
| Product: | [Applications] konsole | Reporter: | adgor <adgor> |
| Component: | general | Assignee: | Konsole Bugs <konsole-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | CVS | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
adgor
2004-05-13 17:35:38 UTC
Tested on 3.2.2 with 4 tabs open. All 3 'tab options' work for me. > Compiler: gcc-3.3.3 gcc-3.4.0
Cool compiler version, but what KDE version?
> Version: (using KDE Devel)
KDE cvs head - ver. 3.2.90 (the problem appears since last two months).
Confirmed with kde cvs of 20040603, new tabs have an icon next to the text, and clicking on a tab brings the icon back. Ahh, I see. 1. Select Text-only - all tabs correctly go to text-only tab. 2. Change to any other tab - icon returns (text-only still selected). Icon & Text and Icon-only work as expected. Until this bug report I never knew there was a 'Tab option' Is there some reason this is not in the Settings menu? Try this patch. On another note, I notice that when the tab arrows are visible, left-clicking over the 'new-tab' button doesn't popup the 'Tab ...' menu. Oh well, another bug...
Index: konsole.cpp
===================================================================
RCS file: /home/kde/kdebase/konsole/konsole/konsole.cpp,v
retrieving revision 1.462
diff -u -p -r1.462 konsole.cpp
--- konsole.cpp 24 May 2004 11:12:45 -0000 1.462
+++ konsole.cpp 4 Jun 2004 06:37:01 -0000
@@ -1925,6 +1925,8 @@ void Konsole::createSessionTab(TEWidget
QIconSet Konsole::iconSetForSession(TESession *session) const
{
+ if (m_tabViewMode == ShowTextOnly)
+ return QIconSet();
return SmallIconSet(session->isMasterMode() ? "remote" : session->IconName());
}
Patch looks fine, please commit. I cannot reproduce the arrow bug you're talking about. Commited. I'll file another bug report for the tab-arrow when I clarify when it happens. |