Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
bad6c28c
Commit
bad6c28c
authored
Apr 05, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/open.cpp: fixed timeshift checkbox.
parent
e447c962
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
12 deletions
+6
-12
modules/gui/wxwindows/open.cpp
modules/gui/wxwindows/open.cpp
+6
-12
No files found.
modules/gui/wxwindows/open.cpp
View file @
bad6c28c
...
...
@@ -711,6 +711,10 @@ wxPanel *OpenDialog::NetPanel( wxWindow* parent )
wxDefaultPosition
,
wxDefaultSize
);
}
/* Timeshift */
net_timeshift
=
new
wxCheckBox
(
panel
,
NetTimeshift_Event
,
wxU
(
_
(
"Allow timeshifting"
))
);
/* UDP/RTP row */
wxFlexGridSizer
*
subpanel_sizer
;
wxStaticText
*
label
;
...
...
@@ -771,17 +775,6 @@ wxPanel *OpenDialog::NetPanel( wxWindow* parent )
net_subpanels
[
i
]
->
SetSizerAndFit
(
subpanel_sizer
);
}
/* Timeshift */
wxPanel
*
timeshift_panel
=
new
wxPanel
(
panel
,
-
1
);
subpanel_sizer
=
new
wxFlexGridSizer
(
1
,
1
,
20
);
net_timeshift
=
new
wxCheckBox
(
timeshift_panel
,
NetTimeshift_Event
,
wxU
(
_
(
"Allow timeshifting"
))
);
subpanel_sizer
->
Add
(
net_timeshift
,
0
,
wxALIGN_RIGHT
|
wxALIGN_CENTER_VERTICAL
);
timeshift_panel
->
SetSizerAndFit
(
subpanel_sizer
);
net_timeshift
->
Enable
();
/* Stuff everything into the main panel */
for
(
i
=
0
;
i
<
4
;
i
++
)
{
...
...
@@ -790,7 +783,8 @@ wxPanel *OpenDialog::NetPanel( wxWindow* parent )
sizer
->
Add
(
net_subpanels
[
i
],
1
,
wxEXPAND
|
wxALIGN_LEFT
|
wxALIGN_CENTER_VERTICAL
|
wxALL
,
5
);
}
sizer
->
Add
(
timeshift_panel
);
sizer
->
Add
(
net_timeshift
,
0
,
wxALIGN_LEFT
|
wxALIGN_CENTER_VERTICAL
|
wxALL
,
5
);
sizer_row
->
Add
(
sizer
,
0
,
wxEXPAND
|
wxALL
,
5
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment