mirror of https://github.com/procxx/kepka.git
Fix crash in destructor of spellchecked input field.
This commit is contained in:
parent
b94ed1fc3b
commit
d1e2fec760
|
@ -278,8 +278,8 @@ void InitSpellchecker(
|
||||||
not_null<Main::Session*> session,
|
not_null<Main::Session*> session,
|
||||||
not_null<Ui::InputField*> field) {
|
not_null<Ui::InputField*> field) {
|
||||||
#ifndef TDESKTOP_DISABLE_SPELLCHECK
|
#ifndef TDESKTOP_DISABLE_SPELLCHECK
|
||||||
const auto s = field->lifetime().make_state<Spellchecker::SpellingHighlighter>(
|
const auto s = Ui::CreateChild<Spellchecker::SpellingHighlighter>(
|
||||||
field->rawTextEdit(),
|
field->rawTextEdit().get(),
|
||||||
session->settings().spellcheckerEnabledValue(),
|
session->settings().spellcheckerEnabledValue(),
|
||||||
field->documentContentsChanges());
|
field->documentContentsChanges());
|
||||||
Spellchecker::SetPhrases({ {
|
Spellchecker::SetPhrases({ {
|
||||||
|
|
Loading…
Reference in New Issue