vlc | branch: master | Pierre Lamot <[email protected]> | Fri Jul 26 18:06:56 2019 +0200| [83e3d772ab49844358701403eb1f60232a057e74] | committer: Jean-Baptiste Kempf
qml: rename Player root object > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=83e3d772ab49844358701403eb1f60232a057e74 --- modules/gui/qt/qml/player/Player.qml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/gui/qt/qml/player/Player.qml b/modules/gui/qt/qml/player/Player.qml index 83eb46e98f..6339857e6d 100644 --- a/modules/gui/qt/qml/player/Player.qml +++ b/modules/gui/qt/qml/player/Player.qml @@ -28,7 +28,7 @@ import "qrc:///playlist/" as PL import "qrc:///menus/" as Menus Utils.NavigableFocusScope { - id: root + id: rootPlayer //center image Rectangle { @@ -132,7 +132,7 @@ Utils.NavigableFocusScope { } component: Rectangle { color: VLCStyle.colors.setColorAlpha(VLCStyle.colors.banner, 0.8) - width: root.width/4 + width: rootPlayer.width/4 height: playlistpopup.height PL.PlaylistListView { @@ -195,11 +195,11 @@ Utils.NavigableFocusScope { toolbarAutoHide.restart() } - onActionUp: root.actionUp(index) - onActionDown: root.actionDown(index) - onActionLeft: root.actionLeft(index) - onActionRight: root.actionRight(index) - onActionCancel: root.actionCancel(index) + onActionUp: rootPlayer.actionUp(index) + onActionDown: rootPlayer.actionDown(index) + onActionLeft: rootPlayer.actionLeft(index) + onActionRight: rootPlayer.actionRight(index) + onActionCancel: rootPlayer.actionCancel(index) //unhandled keys are forwarded as hotkeys Keys.onPressed: { _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
