mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-09-10 12:03:18 +02:00
mainoverlay: make action button lists non-flickable
Gitlab: #411 Change-Id: I6bf799d63547adfa50aaef6a6f87971c5696c616
This commit is contained in:
parent
48536ecc0c
commit
4363917140
1 changed files with 6 additions and 1 deletions
|
@ -270,6 +270,7 @@ Control {
|
|||
orientation: ListView.Horizontal
|
||||
implicitWidth: contentWidth
|
||||
implicitHeight: contentHeight
|
||||
interactive: false
|
||||
|
||||
model: CallOverlayModel.primaryModel()
|
||||
delegate: buttonDelegate
|
||||
|
@ -293,6 +294,7 @@ Control {
|
|||
implicitWidth: contentWidth
|
||||
implicitHeight: overflowRect.height
|
||||
|
||||
interactive: false
|
||||
spacing: itemSpacing
|
||||
|
||||
property int overflowIndex: {
|
||||
|
@ -385,7 +387,10 @@ Control {
|
|||
id: overflowListView
|
||||
spacing: itemSpacing
|
||||
implicitHeight: contentHeight
|
||||
model: overflowButton.popup.visible ? overflowButton.delegateModel : null
|
||||
interactive: false
|
||||
model: overflowButton.popup.visible ?
|
||||
overflowButton.delegateModel :
|
||||
null
|
||||
|
||||
ScrollIndicator.vertical: ScrollIndicator {}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue