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
36f019bb
Commit
36f019bb
authored
Aug 03, 2009
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: Font setting, restore the value from vlcrc.
parent
34271afb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/gui/qt4/components/preferences_widgets.cpp
modules/gui/qt4/components/preferences_widgets.cpp
+2
-2
No files found.
modules/gui/qt4/components/preferences_widgets.cpp
View file @
36f019bb
...
@@ -368,8 +368,6 @@ void DirectoryConfigControl::updateField()
...
@@ -368,8 +368,6 @@ void DirectoryConfigControl::updateField()
text
->
setText
(
toNativeSepNoSlash
(
dir
)
);
text
->
setText
(
toNativeSepNoSlash
(
dir
)
);
}
}
#include <QFontComboBox>
/********* String / Font **********/
/********* String / Font **********/
FontConfigControl
::
FontConfigControl
(
vlc_object_t
*
_p_this
,
FontConfigControl
::
FontConfigControl
(
vlc_object_t
*
_p_this
,
module_config_t
*
_p_item
,
QWidget
*
_parent
,
module_config_t
*
_p_item
,
QWidget
*
_parent
,
...
@@ -378,6 +376,7 @@ FontConfigControl::FontConfigControl( vlc_object_t *_p_this,
...
@@ -378,6 +376,7 @@ FontConfigControl::FontConfigControl( vlc_object_t *_p_this,
{
{
label
=
new
QLabel
(
qtr
(
p_item
->
psz_text
)
);
label
=
new
QLabel
(
qtr
(
p_item
->
psz_text
)
);
font
=
new
QFontComboBox
(
_parent
);
font
=
new
QFontComboBox
(
_parent
);
font
->
setCurrentFont
(
QFont
(
qfu
(
p_item
->
value
.
psz
)
)
);
if
(
!
_p_layout
)
if
(
!
_p_layout
)
{
{
QHBoxLayout
*
layout
=
new
QHBoxLayout
();
QHBoxLayout
*
layout
=
new
QHBoxLayout
();
...
@@ -399,6 +398,7 @@ FontConfigControl::FontConfigControl( vlc_object_t *_p_this,
...
@@ -399,6 +398,7 @@ FontConfigControl::FontConfigControl( vlc_object_t *_p_this,
{
{
label
=
_p_label
;
label
=
_p_label
;
font
=
_p_font
;
font
=
_p_font
;
font
->
setCurrentFont
(
QFont
(
qfu
(
p_item
->
value
.
psz
)
)
);
}
}
/********* String / choice list **********/
/********* String / choice list **********/
...
...
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