1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Screen grabber: hide() the flyout at first

I don't remember why I did show() at first, but works fine without, and
fixes the issue of a 1px wide flyout showing up somewhere in the
chatform
This commit is contained in:
Stefan Merettig 2015-04-02 16:31:58 +02:00 committed by tux3
parent f4610c41f9
commit f0d524e960

View File

@ -34,7 +34,7 @@ FlyoutOverlayWidget::FlyoutOverlayWidget(QWidget *parent)
connect(animation, &QAbstractAnimation::finished, this, &FlyoutOverlayWidget::finishedAnimation); connect(animation, &QAbstractAnimation::finished, this, &FlyoutOverlayWidget::finishedAnimation);
setFlyoutPercent(0); setFlyoutPercent(0);
show(); hide();
} }