mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-06-06 15:13:57 +02:00
Removed unused argument when pin animation in touchbar is cancelled.
This commit is contained in:
parent
a61ad9e2a2
commit
0f00d90c29
1 changed files with 3 additions and 3 deletions
|
@ -264,7 +264,7 @@ TimeId CalculateOnlineTill(not_null<PeerData*> peer) {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const auto cancelCurrentByIndex = [=](int index) {
|
const auto cancelCurrentPeer = [=] {
|
||||||
Expects(*currentPeer != nullptr);
|
Expects(*currentPeer != nullptr);
|
||||||
|
|
||||||
if (*currentState == State::Started) {
|
if (*currentState == State::Started) {
|
||||||
|
@ -278,7 +278,7 @@ TimeId CalculateOnlineTill(not_null<PeerData*> peer) {
|
||||||
|
|
||||||
const auto cancelCurrent = [=] {
|
const auto cancelCurrent = [=] {
|
||||||
if (*currentPeer) {
|
if (*currentPeer) {
|
||||||
cancelCurrentByIndex(indexOf(*currentPeer));
|
cancelCurrentPeer();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -356,7 +356,7 @@ TimeId CalculateOnlineTill(not_null<PeerData*> peer) {
|
||||||
const auto index = indexOf(*currentPeer);
|
const auto index = indexOf(*currentPeer);
|
||||||
if (*currentDesiredIndex == index
|
if (*currentDesiredIndex == index
|
||||||
|| *currentState != State::Started) {
|
|| *currentState != State::Started) {
|
||||||
cancelCurrentByIndex(index);
|
cancelCurrentPeer();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const auto result = *currentDesiredIndex;
|
const auto result = *currentDesiredIndex;
|
||||||
|
|
Loading…
Add table
Reference in a new issue