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
fce3f85b
Commit
fce3f85b
authored
Apr 27, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt4: DVB-T and DVB-C should be in Hz on Windows.
parent
ae80357c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
modules/gui/qt4/components/open_panels.cpp
modules/gui/qt4/components/open_panels.cpp
+11
-1
No files found.
modules/gui/qt4/components/open_panels.cpp
View file @
fce3f85b
...
@@ -1181,13 +1181,23 @@ void CaptureOpenPanel::updateButtons()
...
@@ -1181,13 +1181,23 @@ void CaptureOpenPanel::updateButtons()
bdaBandBox
->
hide
();
bdaBandBox
->
hide
();
bdaBandLabel
->
hide
();
bdaBandLabel
->
hide
();
}
}
else
if
(
bdat
->
isChecked
()
)
else
if
(
bdat
->
isChecked
()
||
bdaa
->
isChecked
()
)
{
{
bdaSrate
->
hide
();
bdaSrate
->
hide
();
bdaSrateLabel
->
hide
();
bdaSrateLabel
->
hide
();
bdaBandBox
->
show
();
bdaBandBox
->
show
();
bdaBandLabel
->
show
();
bdaBandLabel
->
show
();
}
}
if
(
bdas
->
isChecked
()
)
{
bdaFreq
->
setSuffix
(
" kHz"
);
bdaFreq
->
setSingleStep
(
1000
);
}
if
(
bdac
->
isChecked
()
||
bdat
->
isChecked
()
||
bdaa
->
isChecked
(
)
)
{
bdaFreq
->
setSuffix
(
" Hz"
);
bdaFreq
->
setSingleStep
(
100000
);
}
break
;
break
;
#else
#else
case
DVB_DEVICE
:
case
DVB_DEVICE
:
...
...
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