mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-09-03 08:05:12 +00:00
Rename some Ui methods.
myEnsureResized -> Ui::SendPendingMoveResizeEvents. myGrab -> Ui::GrabWidget. myGrabImage -> Ui::GrabWidgetToImage.
This commit is contained in:
@@ -408,7 +408,7 @@ void FieldAutocomplete::hideAnimated() {
|
||||
|
||||
if (_cache.isNull()) {
|
||||
_scroll->show();
|
||||
_cache = myGrab(this);
|
||||
_cache = Ui::GrabWidget(this);
|
||||
}
|
||||
_scroll->hide();
|
||||
_hiding = true;
|
||||
@@ -429,7 +429,7 @@ void FieldAutocomplete::showAnimated() {
|
||||
}
|
||||
if (_cache.isNull()) {
|
||||
_scroll->show();
|
||||
_cache = myGrab(this);
|
||||
_cache = Ui::GrabWidget(this);
|
||||
}
|
||||
_scroll->hide();
|
||||
_hiding = false;
|
||||
|
Reference in New Issue
Block a user