Index: sources/gui/qml/components/HeaderBarPopup.qml =================================================================== diff -u -r17a71bb26f714be5f8eaa3346313a5796cbc3b3a -ra2f4636c3ecf98ec1e38f812f4602e0d67d4b7bf --- sources/gui/qml/components/HeaderBarPopup.qml (.../HeaderBarPopup.qml) (revision 17a71bb26f714be5f8eaa3346313a5796cbc3b3a) +++ sources/gui/qml/components/HeaderBarPopup.qml (.../HeaderBarPopup.qml) (revision a2f4636c3ecf98ec1e38f812f4602e0d67d4b7bf) @@ -4,9 +4,12 @@ import "qrc:/globals" import "qrc:/components" -ModalDialog { id: dialog - width : 250 - height : 150 +ModalDialog { id: _root + implicitWidth : contentItem.implicitWidth + padding * 2 // Auto-size to content + implicitHeight : contentItem.implicitHeight + padding * 2 + width : implicitWidth + height : implicitHeight + padding : 10 modal : false closePolicy : Dialog.CloseOnPressOutside y : Variables.headerHeight + 5