Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
eed5cd17
Commit
eed5cd17
authored
Jun 16, 2010
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Win32: hopefully improve the fontconfig cache display
parent
0d727300
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
3 deletions
+5
-3
modules/gui/qt4/dialogs/external.cpp
modules/gui/qt4/dialogs/external.cpp
+2
-0
modules/misc/freetype.c
modules/misc/freetype.c
+3
-3
No files found.
modules/gui/qt4/dialogs/external.cpp
View file @
eed5cd17
...
...
@@ -194,6 +194,7 @@ QVLCProgressDialog::QVLCProgressDialog (DialogHandler *parent,
setCancelButton
(
new
QPushButton
(
"&"
+
qfu
(
data
->
cancel
)
)
);
if
(
data
->
title
!=
NULL
)
setWindowTitle
(
qfu
(
data
->
title
));
setWindowRole
(
"vlc-progress"
);
setMinimumDuration
(
300
);
setValue
(
0
);
...
...
@@ -247,6 +248,7 @@ void DialogHandler::startProgressBar (vlc_object_t *, void *value)
dialog_progress_bar_t
*
data
=
(
dialog_progress_bar_t
*
)
value
;
QWidget
*
dlg
=
new
QVLCProgressDialog
(
this
,
data
);
QTimer
::
singleShot
(
300
,
dlg
,
SLOT
(
show
()
)
);
// dlg->show ();
}
...
...
modules/misc/freetype.c
View file @
eed5cd17
...
...
@@ -358,8 +358,8 @@ static int Create( vlc_object_t *p_this )
_
(
"Please wait while your font cache is rebuilt.
\n
"
"This should take less than a few minutes."
),
NULL
);
if
(
p_dialog
)
dialog_ProgressSet
(
p_dialog
,
NULL
,
0
.
5
);
/*
if( p_dialog )
dialog_ProgressSet( p_dialog, NULL, 0.5 );
*/
FcConfigBuildFonts
(
fcConfig
);
t2
=
mdate
();
...
...
@@ -367,7 +367,7 @@ static int Create( vlc_object_t *p_this )
if
(
p_dialog
)
{
dialog_ProgressSet
(
p_dialog
,
NULL
,
1
.
0
);
//
dialog_ProgressSet( p_dialog, NULL, 1.0 );
dialog_ProgressDestroy
(
p_dialog
);
p_dialog
=
NULL
;
}
...
...
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