1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2025-09-05 18:22:46 +00:00

Allow manual entry of IP address in setup

Also fixed a small bug in the main page
This commit is contained in:
Chris Josten 2021-08-02 00:57:14 +02:00
parent 242ccc90c1
commit df1e134821
2 changed files with 18 additions and 3 deletions

View file

@ -79,7 +79,7 @@ ApplicationWindow {
onClicked: playbackManager.previous();
}
Button {
readonly property bool _playing: manager.playbackState === MediaPlayer.PlayingState;
readonly property bool _playing: playbackManager.playbackState === MediaPlayer.PlayingState;
anchors.verticalCenter: parent.verticalCenter
text: _playing ? "Pause" : "Play"
onClicked: _playing ? playbackManager.pause() : playbackManager.play()