2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 09:05:14 +00:00

xcode build support started

This commit is contained in:
John Preston
2014-06-14 23:32:11 +04:00
parent 30a07de8e7
commit cace79bc18
110 changed files with 17740 additions and 3535 deletions

View File

@@ -419,7 +419,7 @@ ContactsBox::ContactsBox() : _inner(), _hiding(false), _scroll(this, st::newGrou
connect(&_inner, SIGNAL(mustScrollTo(int,int)), &_scroll, SLOT(scrollToY(int,int)));
showAll();
_cache = grab(rect());
_cache = myGrab(this, rect());
hideAll();
}
@@ -521,7 +521,7 @@ void ContactsBox::animStep(float64 dt) {
void ContactsBox::startHide() {
_hiding = true;
if (_cache.isNull()) {
_cache = grab(rect());
_cache = myGrab(this, rect());
hideAll();
}
a_opacity.start(0);