summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-07-06 07:59:33 +0200
committerGitHub <noreply@github.com>2022-07-06 07:59:33 +0200
commit08e8e6739e4edd4a8b92ba9629169577b55c5c36 (patch)
treec0d1023383c65bc4bf8e47f01ebdbb4c3a042450 /scene
parent8dfdb71f8e7355df1e1002b9c0491dfceb17fe6e (diff)
parent983ce7e9f37dbf36da3fa3775e315cf0ba40989a (diff)
Merge pull request #62755 from Calinou/videostreamplayer-default-disable-expand
Disable Expand by default in VideoStreamPlayer
Diffstat (limited to 'scene')
-rw-r--r--scene/gui/video_stream_player.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/scene/gui/video_stream_player.h b/scene/gui/video_stream_player.h
index d2822a989b..913e7905b6 100644
--- a/scene/gui/video_stream_player.h
+++ b/scene/gui/video_stream_player.h
@@ -64,7 +64,7 @@ class VideoStreamPlayer : public Control {
bool autoplay = false;
float volume = 1.0;
double last_audio_time = 0.0;
- bool expand = true;
+ bool expand = false;
bool loops = false;
int buffering_ms = 500;
int audio_track = 0;