mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-04-19 01:00:47 +01:00
Merge pull request #101 from JIghtuse/master
Fix initialization oreder in TerminalDisplay
This commit is contained in:
commit
e8aee5412f
@ -124,6 +124,10 @@ const QChar LTR_OVERRIDE_CHAR( 0x202D );
|
|||||||
/* ------------------------------------------------------------------------- */
|
/* ------------------------------------------------------------------------- */
|
||||||
KTerminalDisplay::KTerminalDisplay(QQuickItem *parent) :
|
KTerminalDisplay::KTerminalDisplay(QQuickItem *parent) :
|
||||||
QQuickPaintedItem(parent)
|
QQuickPaintedItem(parent)
|
||||||
|
,m_session(0)
|
||||||
|
,m_focusOnClick(true)
|
||||||
|
,m_showVKBonClick(true)
|
||||||
|
,m_parent(parent)
|
||||||
,_screenWindow(0)
|
,_screenWindow(0)
|
||||||
,_allowBell(true)
|
,_allowBell(true)
|
||||||
,_fontHeight(1)
|
,_fontHeight(1)
|
||||||
@ -159,10 +163,6 @@ KTerminalDisplay::KTerminalDisplay(QQuickItem *parent) :
|
|||||||
,_colorsInverted(false)
|
,_colorsInverted(false)
|
||||||
,_cursorShape(BlockCursor)
|
,_cursorShape(BlockCursor)
|
||||||
,_mouseMarks(false)
|
,_mouseMarks(false)
|
||||||
,m_session(0)
|
|
||||||
,m_focusOnClick(true)
|
|
||||||
,m_showVKBonClick(true)
|
|
||||||
,m_parent(parent)
|
|
||||||
{
|
{
|
||||||
_blendColor = qRgba(0,0,0,0xff);
|
_blendColor = qRgba(0,0,0,0xff);
|
||||||
m_widgetRect = QRectF(0,0,1,1);
|
m_widgetRect = QRectF(0,0,1,1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user