mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-12 02:55:18 -04:00
added storing Network Tab Position
added for Check files button to change text when checking files git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1353 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
aae4208470
commit
3bd022bea3
3 changed files with 69 additions and 12 deletions
|
@ -59,7 +59,7 @@
|
|||
#define IMAGE_DOWNLOAD ":/images/download16.png"
|
||||
#define IMAGE_PLAY ":/images/start.png"
|
||||
#define IMAGE_HASH_BUSY ":/images/settings.png"
|
||||
#define IMAGE_HASH_DONE ":/images/friendsfolder24.png"
|
||||
#define IMAGE_HASH_DONE ":/images/accepted16.png"
|
||||
#define IMAGE_MSG ":/images/message-mail.png"
|
||||
#define IMAGE_ATTACHMENT ":/images/attachment.png"
|
||||
#define IMAGE_FRIEND ":/images/peers_16x16.png"
|
||||
|
@ -170,7 +170,7 @@ void SharedFilesDialog::checkUpdate()
|
|||
/* update */
|
||||
if (rsFiles->InDirectoryCheck())
|
||||
{
|
||||
//ui.hashLabel->setPixmap(QPixmap(IMAGE_HASH_BUSY));
|
||||
ui.checkButton->setText(tr("Checking..."));
|
||||
QMovie *movie = new QMovie(":/images/loader/16-loader.gif");
|
||||
ui.hashLabel->setMovie(movie);
|
||||
movie->start();
|
||||
|
@ -178,7 +178,7 @@ void SharedFilesDialog::checkUpdate()
|
|||
}
|
||||
else
|
||||
{
|
||||
//movie->stop();
|
||||
ui.checkButton->setText(tr("Check files"));
|
||||
ui.hashLabel->setPixmap(QPixmap(IMAGE_HASH_DONE));
|
||||
ui.hashLabel->setToolTip("") ;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue