konsole: disable size hint by default

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2023-09-01 00:51:12 +03:00
parent 15b2ebeea2
commit 260efdf321
3 changed files with 3 additions and 3 deletions

View file

@ -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);

View file

@ -268,7 +268,7 @@ TerminalDisplay::TerminalDisplay(QWidget* parent)
, _image(0)
, _randomSeed(0)
, _resizing(false)
, _showTerminalSizeHint(true)
, _showTerminalSizeHint(false)
, _bidiEnabled(false)
, _actSel(0)
, _wordSelectionMode(false)

View file

@ -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>