mirror of https://github.com/procxx/kepka.git
Hide three-dot peer menu when peer changes.
This commit is contained in:
parent
301aa9572f
commit
da77c10f60
|
@ -352,8 +352,7 @@ void HistoryTopBarWidget::backClicked() {
|
||||||
_controller->showBackFromStack();
|
_controller->showBackFromStack();
|
||||||
}
|
}
|
||||||
|
|
||||||
void HistoryTopBarWidget::setHistoryPeer(
|
void HistoryTopBarWidget::setHistoryPeer(PeerData *historyPeer) {
|
||||||
not_null<PeerData*> historyPeer) {
|
|
||||||
if (_historyPeer != historyPeer) {
|
if (_historyPeer != historyPeer) {
|
||||||
_historyPeer = historyPeer;
|
_historyPeer = historyPeer;
|
||||||
update();
|
update();
|
||||||
|
@ -367,8 +366,10 @@ void HistoryTopBarWidget::setHistoryPeer(
|
||||||
Ui::UserpicButton::Role::Custom,
|
Ui::UserpicButton::Role::Custom,
|
||||||
st::topBarInfoButton);
|
st::topBarInfoButton);
|
||||||
_info->setAttribute(Qt::WA_TransparentForMouseEvents);
|
_info->setAttribute(Qt::WA_TransparentForMouseEvents);
|
||||||
} else {
|
}
|
||||||
_info.destroy();
|
if (_menu) {
|
||||||
|
_menuToggle->removeEventFilter(_menu);
|
||||||
|
_menu->hideFast();
|
||||||
}
|
}
|
||||||
updateOnlineDisplay();
|
updateOnlineDisplay();
|
||||||
updateControlsVisibility();
|
updateControlsVisibility();
|
||||||
|
|
|
@ -55,7 +55,7 @@ public:
|
||||||
}
|
}
|
||||||
void setAnimationMode(bool enabled);
|
void setAnimationMode(bool enabled);
|
||||||
|
|
||||||
void setHistoryPeer(not_null<PeerData*> historyPeer);
|
void setHistoryPeer(PeerData *historyPeer);
|
||||||
|
|
||||||
static void paintUnreadCounter(
|
static void paintUnreadCounter(
|
||||||
Painter &p,
|
Painter &p,
|
||||||
|
|
|
@ -1739,11 +1739,11 @@ void HistoryWidget::showHistory(const PeerId &peerId, MsgId showAtMsgId, bool re
|
||||||
|
|
||||||
if (peerId) {
|
if (peerId) {
|
||||||
_peer = App::peer(peerId);
|
_peer = App::peer(peerId);
|
||||||
_topBar->setHistoryPeer(_peer);
|
|
||||||
_channel = peerToChannel(_peer->id);
|
_channel = peerToChannel(_peer->id);
|
||||||
_canSendMessages = canSendMessages(_peer);
|
_canSendMessages = canSendMessages(_peer);
|
||||||
_tabbedSelector->setCurrentPeer(_peer);
|
_tabbedSelector->setCurrentPeer(_peer);
|
||||||
}
|
}
|
||||||
|
_topBar->setHistoryPeer(_peer);
|
||||||
updateTopBarSelection();
|
updateTopBarSelection();
|
||||||
|
|
||||||
if (_peer && _peer->isChannel()) {
|
if (_peer && _peer->isChannel()) {
|
||||||
|
|
Loading…
Reference in New Issue