From 19bcc145ad75025d54ca5436548681491aea2a92 Mon Sep 17 00:00:00 2001 From: John Preston Date: Fri, 1 May 2020 16:27:55 +0400 Subject: [PATCH] Fix crash in theme editor. --- Telegram/SourceFiles/window/themes/window_theme_editor_block.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Telegram/SourceFiles/window/themes/window_theme_editor_block.cpp b/Telegram/SourceFiles/window/themes/window_theme_editor_block.cpp index 9995ae4f9..decd33413 100644 --- a/Telegram/SourceFiles/window/themes/window_theme_editor_block.cpp +++ b/Telegram/SourceFiles/window/themes/window_theme_editor_block.cpp @@ -238,6 +238,7 @@ void EditorBlock::removeRow(const QString &name, bool removeCopyReferences) { row.setCopyOf(QString()); } } + removeFromSearch(_data[index]); _data.erase(_data.begin() + index); _indices.erase(it); for (auto i = index, count = static_cast(_data.size()); i != count; ++i) {