mirror of
https://github.com/zoriya/astal.git
synced 2026-05-28 00:21:24 +00:00
fix: enums
for some reason in gjs I experience Playing and Paused being 0
This commit is contained in:
+3
-3
@@ -382,7 +382,7 @@ public class Player : Object {
|
||||
}
|
||||
|
||||
public enum PlaybackStatus {
|
||||
PLAYING = 0,
|
||||
PLAYING,
|
||||
PAUSED,
|
||||
STOPPED;
|
||||
|
||||
@@ -412,7 +412,7 @@ public enum PlaybackStatus {
|
||||
}
|
||||
|
||||
public enum Loop {
|
||||
UNSUPPORTED = 0,
|
||||
UNSUPPORTED,
|
||||
NONE,
|
||||
TRACK,
|
||||
PLAYLIST;
|
||||
@@ -445,7 +445,7 @@ public enum Loop {
|
||||
}
|
||||
|
||||
public enum Shuffle {
|
||||
UNSUPPORTED = 0,
|
||||
UNSUPPORTED,
|
||||
ON,
|
||||
OFF;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user