Committed patch from bug report 11353.

svn path=/trunk/kdebase/konsole/; revision=94083
wilder-portage
Rob Kaper 25 years ago
parent 5eddf20efb
commit 969314a203
  1. 4
      ChangeLog
  2. 5
      src/konsole.C

@ -1,3 +1,7 @@
26 Apr 2001
- Applied patches from bug reports 11353 and 16321, session title is now
passed to window title and going back and forth from fullscreen mode no
longer appends extra data to the window title.
20 Dec 2000
- Made ColorSchema a class instead of a struct.
- Added hasSchemaFileChanged() to detect changed .schema files if needed.

@ -1066,7 +1066,10 @@ void Konsole::showFullScreen()
void Konsole::setFullScreen(bool on)
{
if (on == b_fullscreen) return;
if (on) showFullScreen(); else showNormal();
if (on) showFullScreen(); else {
showNormal();
setCaption(title); // restore caption of window
}
b_fullscreen = on;
m_options->setItemChecked(5,b_fullscreen);
}

Loading…
Cancel
Save