Skip to content

Commit

Permalink
Fix cannot exit fullscreen video
Browse files Browse the repository at this point in the history
introduced by: 5a863ff
  • Loading branch information
xfangfang committed Dec 1, 2023
1 parent 29d0aa5 commit 1c38b6c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/xml/activity/video_activity.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<brls:Box>
<VideoView
id="fullscreen/video"
id="video"
hideHighlight="true"
width="100%"
height="100%"/>
Expand Down
2 changes: 1 addition & 1 deletion wiliwili/include/activity/dlna_activity.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class DLNAActivity : public brls::Activity {
void dismiss();

private:
BRLS_BIND(VideoView, video, "fullscreen/video");
BRLS_BIND(VideoView, video, "video");

// 监控mpv事件
MPVEvent::Subscription mpvEventSubscribeID;
Expand Down
2 changes: 1 addition & 1 deletion wiliwili/include/activity/live_player_activity.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class LiveActivity : public brls::Activity, public LiveDataRequest {
~LiveActivity() override;

private:
BRLS_BIND(VideoView, video, "fullscreen/video");
BRLS_BIND(VideoView, video, "video");

// 暂停的延时函数 handle
size_t toggleDelayIter = 0;
Expand Down

0 comments on commit 1c38b6c

Please sign in to comment.