| Summary: | --noframe option does nothing | ||
|---|---|---|---|
| Product: | [Applications] konsole | Reporter: | Paul Giannaros <ceruleanblaze> |
| Component: | general | Assignee: | Konsole Bugs <konsole-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Paul Giannaros
2005-02-20 21:02:48 UTC
CVS commit by hindenburg:
Allow --noframe to work again.
BUG: 99884
M +3 -1 konsole.cpp 1.508
--- kdebase/konsole/konsole/konsole.cpp #1.507:1.508
@@ -249,4 +249,5 @@ Konsole::Konsole(const char* name, int h
,b_dynamicTabHide(false)
,b_autoResizeTabs(false)
+,b_framevis(true)
,b_fullscreen(false)
,m_menuCreated(false)
@@ -1500,4 +1501,5 @@ void Konsole::readProperties(KConfig* co
b_bidiEnabled = config->readBoolEntry("EnableBidi",false);
s_word_seps= config->readEntry("wordseps",":@-./_~");
+ if (b_framevis) // False only with --noframe
b_framevis = config->readBoolEntry("has frame",true);
QPtrList<TEWidget> tes = activeTEs();
This broke show/hiding frame via Configure Konsole. Any chance to re-implement this? --noframe in version 1.6.5 (KDE 3.5.5) still appears to have no effect. KDE 4 - Fixed since there is no option at all to even have a frame in the first place. Some of the frames were not removable in KDE 3 either. Its also possible in KDE 3.5 http://www.kde-look.org/content/show.php/True+transparency+for+Konsole?content=48303 --> "And as a bonus, it removes the 1 pixel border around the window, so that you can embed the console in the desktop." |