Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Konsole
Commits
c252666b
Commit
c252666b
authored
Jul 18, 2011
by
Kurt Hindenburg
Browse files
Fix $COLUMNS/$LINES after resizing.
The 2 were inverted previously.
CCBUG: 245746
parent
3bdd4a97
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/Vt102Emulation.cpp
View file @
c252666b
...
...
@@ -540,7 +540,7 @@ void Vt102Emulation::processToken(int token, int p, int q)
case
TY_ESC_DE
(
'8'
)
:
_currentScreen
->
helpAlign
(
);
break
;
// resize = \e[8;<row>;<col>t
case
TY_CSI_PS
(
't'
,
8
)
:
setImageSize
(
q
/*
column
s */
,
p
/*
line
s */
);
break
;
case
TY_CSI_PS
(
't'
,
8
)
:
setImageSize
(
p
/*
line
s */
,
q
/*
column
s */
);
break
;
// change tab text color : \e[28;<color>t color: 0-16,777,215
case
TY_CSI_PS
(
't'
,
28
)
:
emit
changeTabTextColorRequest
(
p
);
break
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment