[vlc-devel] commit: Partially fix #1788 : don't disable the button during the update. ( Rémi Duraffort )

git version control git at videolan.org
Tue Jul 29 14:28:06 CEST 2008


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Tue Jul 29 14:27:41 2008 +0200| [2ddb17af38f099e96c1a0dea6673db855ef8dc9d]

Partially fix #1788 : don't disable the button during the update.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2ddb17af38f099e96c1a0dea6673db855ef8dc9d
---

 modules/gui/qt4/dialogs/help.cpp |    7 ++-----
 1 files changed, 2 insertions(+), 5 deletions(-)

diff --git a/modules/gui/qt4/dialogs/help.cpp b/modules/gui/qt4/dialogs/help.cpp
index 559e751..d599947 100644
--- a/modules/gui/qt4/dialogs/help.cpp
+++ b/modules/gui/qt4/dialogs/help.cpp
@@ -207,7 +207,7 @@ UpdateDialog::UpdateDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
 
     QGridLayout *layout = new QGridLayout( this );
 
-    QPushButton *closeButton = new QPushButton( qtr( "&Close" ) );
+    QPushButton *closeButton = new QPushButton( qtr( "&Cancel" ) );
     updateButton = new QPushButton( qtr( "&Update List" ) );
     updateButton->setDefault( true );
     QDialogButtonBox *buttonBox = new QDialogButtonBox( Qt::Horizontal );
@@ -255,7 +255,6 @@ void UpdateDialog::UpdateOrDownload()
     }
     else
     {
-        updateButton->setEnabled( false );
         QString dest_dir = QFileDialog::getExistingDirectory( this,
                                  qtr( "Select a directory..." ),
                                  qfu( config_GetHomeDir() ) );
@@ -272,8 +271,6 @@ void UpdateDialog::UpdateOrDownload()
             toggleVisible();
             update_Download( p_update, qtu( dest_dir ) );
         }
-        else
-            updateButton->setEnabled( true );
     }
 }
 
@@ -297,7 +294,7 @@ void UpdateDialog::updateNotify( bool b_result )
             update_release_t *p_release = update_GetRelease( p_update );
             assert( p_release );
             b_checked = true;
-            updateButton->setText( "Download" );
+            updateButton->setText( "Ok" );
             updateLabel->setText( qtr( "There is a new version of VLC :\n" )
                                 + qfu( p_release->psz_desc )  );
 




More information about the vlc-devel mailing list