We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 461de4d commit 2721f32Copy full SHA for 2721f32
CHANGELOG.md
@@ -1,3 +1,9 @@
1
+## Unreleased
2
+
3
+* Fixed:
4
+ * When a source was specified on the command line,
5
+ you had to click "add player" for it to start playing.
6
7
## v0.2.1 (2025-07-22)
8
9
* Fixed:
src/gui/grid.rs
@@ -77,9 +77,15 @@ pub struct Grid {
77
78
impl Grid {
79
pub fn new(settings: &Settings) -> Self {
80
+ let players = if settings.sources.is_empty() {
81
+ vec![]
82
+ } else {
83
+ vec![Player::default()]
84
+ };
85
86
Self {
87
sources: settings.sources.clone(),
- players: vec![],
88
+ players,
89
content_fit: settings.content_fit,
90
orientation: settings.orientation,
91
orientation_limit: settings.orientation_limit,
0 commit comments