From 2ec4da2eb23db501e7442df12f6110a4587698f6 Mon Sep 17 00:00:00 2001 From: Stephan Binner Date: Mon, 1 Sep 2003 19:19:38 +0000 Subject: [PATCH] Changed default setting for resize size hint to off. svn path=/trunk/kdebase/konsole/; revision=247659 --- konsole/konsole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/konsole/konsole.cpp b/konsole/konsole.cpp index 2908bd19..d62a877d 100644 --- a/konsole/konsole.cpp +++ b/konsole/konsole.cpp @@ -1141,7 +1141,7 @@ void Konsole::readProperties(KConfig* config, const QString &schema, bool global s_word_seps= config->readEntry("wordseps",":@-./_~"); te->setWordCharacters(s_word_seps); - te->setTerminalSizeHint( config->readBoolEntry("TerminalSizeHint",true) ); + te->setTerminalSizeHint( config->readBoolEntry("TerminalSizeHint",false) ); b_framevis = config->readBoolEntry("has frame",true); te->setFrameStyle( b_framevis?(QFrame::WinPanel|QFrame::Sunken):QFrame::NoFrame );