Browse Source

qml/RendererButton: Update menu placement

pull/134/head
Benjamin Arnaud 4 years ago
committed by Felix Paul Kühne
parent
commit
803ba0d8ed
  1. 4
      modules/gui/qt/player/qml/controlbarcontrols/RendererButton.qml

4
modules/gui/qt/player/qml/controlbarcontrols/RendererButton.qml

@ -31,8 +31,8 @@ Widgets.IconControlButton {
iconText: VLCIcons.renderer
text: I18n.qtr("Renderer")
// NOTE: We want to pop the menu after the button.
onClicked: menu.popup(this.mapToGlobal(width, 0))
// NOTE: We want to pop the menu above the button.
onClicked: menu.popup(this.mapToGlobal(0, 0), true)
QmlRendererMenu {
id: menu

Loading…
Cancel
Save