Summary: | Initial Konsole tab is too big, but changes when new tabs are created | ||
---|---|---|---|
Product: | [Applications] konsole | Reporter: | monstermunch |
Component: | general | Assignee: | Konsole Developer <konsole-devel> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | 1.5.1 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: |
This is what konsole looks like when I first launch it.
This is what konsole looks like after I create a new tab. This is what konsole looks like after I remove the tab I just created. This is my .kde/share/config/konsolerc file |
Description
monstermunch
2005-06-02 18:00:16 UTC
Created attachment 11295 [details]
This is what konsole looks like when I first launch it.
Created attachment 11296 [details]
This is what konsole looks like after I create a new tab.
Created attachment 11297 [details]
This is what konsole looks like after I remove the tab I just created.
Created attachment 11298 [details]
This is my .kde/share/config/konsolerc file
SVN commit 422487 by aacid: Fix bug 106679 To konsole developers: hope you don't mind i commited without asking you first but this is a one liner so i doubt i can screw it up, would you like that i backport it? BUGS: 106679 M +2 -1 konsole.cpp --- trunk/KDE/kdebase/konsole/konsole/konsole.cpp #422486:422487 @@ -2066,7 +2066,8 @@ KRadioAction *ra = session2action.find(se); if (ra && (ra->icon() != icon)) ra->setIcon(icon); - if (b_matchTabWinTitle && m_tabViewMode != ShowIconOnly) + if (m_tabViewMode == ShowIconOnly) tabwidget->changeTab( se->widget(), QString::null ); + else if (b_matchTabWinTitle) tabwidget->changeTab( se->widget(), se->fullTitle() ); } i meant bug 106684 of course, was a typo :-/ SVN commit 422596 by hindenburg: Backport to fix extra space for Icon Only tabs. CCBUGS: 106684 M +3 -0 konsole.cpp --- branches/KDE/3.4/kdebase/konsole/konsole/konsole.cpp #422595:422596 @@ -2137,6 +2137,9 @@ KRadioAction *ra = session2action.find(se); if (ra && (ra->icon() != icon)) ra->setIcon(icon); + + if (m_tabViewMode == ShowIconOnly) + tabwidget->changeTab( se->widget(), QString::null ); } void Konsole::initSessionFont(int fontNo) { |