From b84abbec0894d59bbb9e24f6f8bf29a90f70ada3 Mon Sep 17 00:00:00 2001 From: John Preston Date: Thu, 9 Feb 2017 16:43:21 +0300 Subject: [PATCH] Fixed crash in Theme Editor. There was an attempt to access _searchResults with index from _data. --- .../SourceFiles/window/themes/window_theme_editor_block.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Telegram/SourceFiles/window/themes/window_theme_editor_block.cpp b/Telegram/SourceFiles/window/themes/window_theme_editor_block.cpp index 7c1cf701d..f692e79fc 100644 --- a/Telegram/SourceFiles/window/themes/window_theme_editor_block.cpp +++ b/Telegram/SourceFiles/window/themes/window_theme_editor_block.cpp @@ -729,8 +729,8 @@ void EditorBlock::addRowRipple(int index) { auto ripple = row.ripple(); if (!ripple) { auto mask = Ui::RippleAnimation::rectMask(QSize(width(), row.height())); - ripple = row.setRipple(std_::make_unique(st::defaultRippleAnimation, std_::move(mask), [this, index] { - updateRow(rowAtIndex(index)); + ripple = row.setRipple(std_::make_unique(st::defaultRippleAnimation, std_::move(mask), [this, index = findRowIndex(&row)] { + updateRow(_data[index]); })); } auto origin = mapFromGlobal(QCursor::pos()) - QPoint(0, row.top());