mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fix: avoid holes when moving tabs (#5612)
This commit is contained in:
parent
06d9a37709
commit
94e266ac82
|
@ -31,7 +31,7 @@
|
|||
- Minor: Removed experimental IRC support. (#5547)
|
||||
- Minor: Moderators can now see which mods start and cancel raids. (#5563)
|
||||
- Minor: The emote popup now reloads when Twitch emotes are reloaded. (#5580)
|
||||
- Bugfix: Fixed tab move animation occasionally failing to start after closing a tab. (#5426)
|
||||
- Bugfix: Fixed tab move animation occasionally failing to start after closing a tab. (#5426, #5612)
|
||||
- Bugfix: If a network request errors with 200 OK, Qt's error code is now reported instead of the HTTP status. (#5378)
|
||||
- Bugfix: Fixed restricted users usernames not being clickable. (#5405)
|
||||
- Bugfix: Fixed a crash that could occur when logging was enabled in IRC servers that were removed. (#5419)
|
||||
|
|
|
@ -412,11 +412,6 @@ void NotebookTab::moveAnimated(QPoint targetPos, bool animated)
|
|||
{
|
||||
this->positionAnimationDesiredPoint_ = targetPos;
|
||||
|
||||
if (this->pos() == targetPos)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (!animated || !this->notebook_->isVisible())
|
||||
{
|
||||
this->move(targetPos);
|
||||
|
|
Loading…
Reference in a new issue