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
2ddb17af
Commit
2ddb17af
authored
Jul 29, 2008
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Partially fix #1788 : don't disable the button during the update.
parent
d2ac50af
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
modules/gui/qt4/dialogs/help.cpp
modules/gui/qt4/dialogs/help.cpp
+2
-5
No files found.
modules/gui/qt4/dialogs/help.cpp
View file @
2ddb17af
...
@@ -207,7 +207,7 @@ UpdateDialog::UpdateDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
...
@@ -207,7 +207,7 @@ UpdateDialog::UpdateDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QGridLayout
*
layout
=
new
QGridLayout
(
this
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"&C
lose
"
)
);
QPushButton
*
closeButton
=
new
QPushButton
(
qtr
(
"&C
ancel
"
)
);
updateButton
=
new
QPushButton
(
qtr
(
"&Update List"
)
);
updateButton
=
new
QPushButton
(
qtr
(
"&Update List"
)
);
updateButton
->
setDefault
(
true
);
updateButton
->
setDefault
(
true
);
QDialogButtonBox
*
buttonBox
=
new
QDialogButtonBox
(
Qt
::
Horizontal
);
QDialogButtonBox
*
buttonBox
=
new
QDialogButtonBox
(
Qt
::
Horizontal
);
...
@@ -255,7 +255,6 @@ void UpdateDialog::UpdateOrDownload()
...
@@ -255,7 +255,6 @@ void UpdateDialog::UpdateOrDownload()
}
}
else
else
{
{
updateButton
->
setEnabled
(
false
);
QString
dest_dir
=
QFileDialog
::
getExistingDirectory
(
this
,
QString
dest_dir
=
QFileDialog
::
getExistingDirectory
(
this
,
qtr
(
"Select a directory..."
),
qtr
(
"Select a directory..."
),
qfu
(
config_GetHomeDir
()
)
);
qfu
(
config_GetHomeDir
()
)
);
...
@@ -272,8 +271,6 @@ void UpdateDialog::UpdateOrDownload()
...
@@ -272,8 +271,6 @@ void UpdateDialog::UpdateOrDownload()
toggleVisible
();
toggleVisible
();
update_Download
(
p_update
,
qtu
(
dest_dir
)
);
update_Download
(
p_update
,
qtu
(
dest_dir
)
);
}
}
else
updateButton
->
setEnabled
(
true
);
}
}
}
}
...
@@ -297,7 +294,7 @@ void UpdateDialog::updateNotify( bool b_result )
...
@@ -297,7 +294,7 @@ void UpdateDialog::updateNotify( bool b_result )
update_release_t
*
p_release
=
update_GetRelease
(
p_update
);
update_release_t
*
p_release
=
update_GetRelease
(
p_update
);
assert
(
p_release
);
assert
(
p_release
);
b_checked
=
true
;
b_checked
=
true
;
updateButton
->
setText
(
"
Download
"
);
updateButton
->
setText
(
"
Ok
"
);
updateLabel
->
setText
(
qtr
(
"There is a new version of VLC :
\n
"
)
updateLabel
->
setText
(
qtr
(
"There is a new version of VLC :
\n
"
)
+
qfu
(
p_release
->
psz_desc
)
);
+
qfu
(
p_release
->
psz_desc
)
);
...
...
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