mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-23 18:32:50 +00:00
konsole: disable size hint by default
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
15b2ebeea2
commit
260efdf321
3 changed files with 3 additions and 3 deletions
|
@ -153,7 +153,7 @@ FallbackProfile::FallbackProfile()
|
|||
setProperty(Environment, QStringList() << "TERM=xterm");
|
||||
setProperty(LocalTabTitleFormat, "%d : %n");
|
||||
setProperty(RemoteTabTitleFormat, "(%u) %H");
|
||||
setProperty(ShowTerminalSizeHint, true);
|
||||
setProperty(ShowTerminalSizeHint, false);
|
||||
setProperty(StartInCurrentSessionDir, true);
|
||||
setProperty(MenuIndex, "0");
|
||||
setProperty(SilenceSeconds, 10);
|
||||
|
|
|
@ -268,7 +268,7 @@ TerminalDisplay::TerminalDisplay(QWidget* parent)
|
|||
, _image(0)
|
||||
, _randomSeed(0)
|
||||
, _resizing(false)
|
||||
, _showTerminalSizeHint(true)
|
||||
, _showTerminalSizeHint(false)
|
||||
, _bidiEnabled(false)
|
||||
, _actSel(0)
|
||||
, _wordSelectionMode(false)
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<entry name="ShowTerminalSizeHint" type="Bool">
|
||||
<label>Show hint for terminal size after resizing</label>
|
||||
<tooltip>Show terminal size in columns and lines in the center of window after resizing</tooltip>
|
||||
<default>true</default>
|
||||
<default>false</default>
|
||||
</entry>
|
||||
<entry name="SaveGeometryOnExit" type="Bool">
|
||||
<label>Use current window size on next startup</label>
|
||||
|
|
Loading…
Add table
Reference in a new issue