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
Plasma
KWin
Commits
05811535
Commit
05811535
authored
Mar 06, 2021
by
Aleix Pol Gonzalez
🐧
Browse files
Apply 1 suggestion(s) to 1 file(s)
parent
92d3cb2f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/inputmethod.cpp
View file @
05811535
...
...
@@ -168,6 +168,10 @@ void InputMethod::clientAdded(AbstractClient* client)
}
});
connect
(
m_inputClient
,
&
AbstractClient
::
frameGeometryChanged
,
this
,
refreshFrame
);
// Current code have a assumption that InputMethod started by the kwin is virtual keyboard,
// InputMethod::hide sends out a deactivate signal to input-method client, this is not desired
// when we support input methods like ibus which can show and hide surfaces/windows as they please
// and are not exactly Virtual keyboards.
connect
(
m_inputClient
,
&
AbstractClient
::
windowHidden
,
this
,
&
InputMethod
::
hide
);
connect
(
m_inputClient
,
&
AbstractClient
::
windowClosed
,
this
,
&
InputMethod
::
hide
);
}
...
...
Write
Preview
Supports
Markdown
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