diff --git a/Telegram/SourceFiles/boxes/contactsbox.cpp b/Telegram/SourceFiles/boxes/contactsbox.cpp index 10d7da7c4..80b7ff537 100644 --- a/Telegram/SourceFiles/boxes/contactsbox.cpp +++ b/Telegram/SourceFiles/boxes/contactsbox.cpp @@ -1354,7 +1354,6 @@ void ContactsBox::init() { _cancel.hide(); } connect(&_cancel, SIGNAL(clicked()), this, SLOT(onClose())); - connect(&_scroll, SIGNAL(scrolled()), &_inner, SLOT(updateSel())); connect(&_scroll, SIGNAL(scrolled()), this, SLOT(onScroll())); connect(&_filter, SIGNAL(changed()), this, SLOT(onFilterUpdate())); connect(&_filter, SIGNAL(submitted(bool)), this, SLOT(onSubmit())); @@ -2257,7 +2256,6 @@ MembersBox::MembersBox(ChannelData *channel, MembersFilter filter) : ItemListBox connect(&_inner, SIGNAL(addRequested()), this, SLOT(onAdd())); - connect(&_scroll, SIGNAL(scrolled()), &_inner, SLOT(updateSel())); connect(&_scroll, SIGNAL(scrolled()), this, SLOT(onScroll())); connect(&_inner, SIGNAL(mustScrollTo(int, int)), &_scroll, SLOT(scrollToY(int, int))); connect(&_inner, SIGNAL(loaded()), this, SLOT(onLoaded())); diff --git a/Telegram/SourceFiles/boxes/stickersetbox.cpp b/Telegram/SourceFiles/boxes/stickersetbox.cpp index 814958521..10ad1a6ec 100644 --- a/Telegram/SourceFiles/boxes/stickersetbox.cpp +++ b/Telegram/SourceFiles/boxes/stickersetbox.cpp @@ -616,7 +616,7 @@ void StickersInner::step_shifting(uint64 ms, bool timer) { if (updateMin < 0) updateMin = i; updateMax = i; if (start + st::stickersRowDuration > ms && ms >= start) { - _rows.at(i)->yadd.update((ms - start) / st::stickersRowDuration, anim::sineInOut); + _rows.at(i)->yadd.update(float64(ms - start) / st::stickersRowDuration, anim::sineInOut); animating = true; } else { _rows.at(i)->yadd.finish(); @@ -628,7 +628,7 @@ void StickersInner::step_shifting(uint64 ms, bool timer) { if (updateMin < 0 || updateMin > _above) updateMin = _above; if (updateMax < _above) updateMin = _above; if (_aboveShadowFadeStart + st::stickersRowDuration > ms && ms > _aboveShadowFadeStart) { - _aboveShadowFadeOpacity.update((ms - _aboveShadowFadeStart) / st::stickersRowDuration, anim::sineInOut); + _aboveShadowFadeOpacity.update(float64(ms - _aboveShadowFadeStart) / st::stickersRowDuration, anim::sineInOut); animating = true; } else { _aboveShadowFadeOpacity.finish(); @@ -782,7 +782,6 @@ StickersBox::StickersBox() : ItemListBox(st::boxScroll) connect(&_inner, SIGNAL(checkDraggingScroll(int)), this, SLOT(onCheckDraggingScroll(int))); connect(&_inner, SIGNAL(noDraggingScroll()), this, SLOT(onNoDraggingScroll())); - connect(&_scroll, SIGNAL(scrolled()), &_inner, SLOT(onUpdateSelected())); connect(&_scrollTimer, SIGNAL(timeout()), this, SLOT(onScrollTimer())); _scrollTimer.setSingleShot(false); diff --git a/Telegram/SourceFiles/dialogswidget.cpp b/Telegram/SourceFiles/dialogswidget.cpp index 7f2bc5366..231e02818 100644 --- a/Telegram/SourceFiles/dialogswidget.cpp +++ b/Telegram/SourceFiles/dialogswidget.cpp @@ -1781,7 +1781,6 @@ DialogsWidget::DialogsWidget(MainWidget *parent) : TWidget(parent) connect(&_inner, SIGNAL(refreshHashtags()), this, SLOT(onFilterCursorMoved())); connect(&_inner, SIGNAL(cancelSearchInPeer()), this, SLOT(onCancelSearchInPeer())); connect(&_scroll, SIGNAL(geometryChanged()), &_inner, SLOT(onParentGeometryChanged())); - connect(&_scroll, SIGNAL(scrolled()), &_inner, SLOT(onUpdateSelected())); connect(&_scroll, SIGNAL(scrolled()), this, SLOT(onListScroll())); connect(&_filter, SIGNAL(cancelled()), this, SLOT(onCancel())); connect(&_filter, SIGNAL(changed()), this, SLOT(onFilterUpdate())); diff --git a/Telegram/SourceFiles/dropdown.cpp b/Telegram/SourceFiles/dropdown.cpp index 9c82d9aa7..6d4ae62fc 100644 --- a/Telegram/SourceFiles/dropdown.cpp +++ b/Telegram/SourceFiles/dropdown.cpp @@ -746,10 +746,7 @@ void EmojiPanInner::setMaxHeight(int32 h) { } void EmojiPanInner::setScrollTop(int top) { - if (top == _top) return; - _top = top; - updateSelected(); } int EmojiPanInner::countHeight() { @@ -1259,7 +1256,6 @@ void StickerPanInner::setScrollTop(int top) { _lastScrolled = getms(); _top = top; - updateSelected(); } int32 StickerPanInner::countHeight(bool plain) { diff --git a/Telegram/SourceFiles/history/field_autocomplete.cpp b/Telegram/SourceFiles/history/field_autocomplete.cpp index 7d2a7c532..d1c9d373d 100644 --- a/Telegram/SourceFiles/history/field_autocomplete.cpp +++ b/Telegram/SourceFiles/history/field_autocomplete.cpp @@ -58,7 +58,6 @@ FieldAutocomplete::FieldAutocomplete(QWidget *parent) : TWidget(parent) _inner->show(); connect(_scroll, SIGNAL(geometryChanged()), _inner, SLOT(onParentGeometryChanged())); - connect(_scroll, SIGNAL(scrolled()), _inner, SLOT(onUpdateSelected())); } void FieldAutocomplete::paintEvent(QPaintEvent *e) { diff --git a/Telegram/SourceFiles/historywidget.cpp b/Telegram/SourceFiles/historywidget.cpp index 8a5b0dd2e..6a30d790c 100644 --- a/Telegram/SourceFiles/historywidget.cpp +++ b/Telegram/SourceFiles/historywidget.cpp @@ -2568,7 +2568,7 @@ bool BotKeyboard::singleUse() const { void BotKeyboard::updateStyle(int32 w) { if (!_impl) return; - int implWidth = ((w < 0) ? width() : w) - _st->margin - st::botKbScroll.width; + int implWidth = ((w < 0) ? width() : w) - st::botKbButton.margin - st::botKbScroll.width; _st = _impl->isEnoughSpace(implWidth, st::botKbButton) ? &st::botKbButton : &st::botKbTinyButton; _impl->setStyle(std_::make_unique