mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-12 02:55:18 -04:00
improved design layout of some pages
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1689 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
f8d8599c02
commit
261f21f22a
5 changed files with 565 additions and 466 deletions
|
@ -734,8 +734,12 @@ void SharedFilesDialog::showFrame(bool show)
|
|||
|
||||
ui.remoteButton->setChecked(false);
|
||||
ui.splittedButton->setChecked(false);
|
||||
|
||||
/* set textcolor for Channel name */
|
||||
QString labelStr("<span style=\"font-size:11pt; font-weight:500;"
|
||||
"color:#000000;\">%1</span>");
|
||||
|
||||
ui.labeltext->setText(tr("<strong>My Shared Files</strong>"));
|
||||
ui.labeltext->setText( labelStr.arg(tr("<strong>My Shared Files</strong>")));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -749,7 +753,11 @@ void SharedFilesDialog::showFrameRemote(bool show)
|
|||
ui.localButton->setChecked(false);
|
||||
ui.splittedButton->setChecked(false);
|
||||
|
||||
ui.labeltext->setText(tr("<strong>Friends Files</strong>"));
|
||||
/* set textcolor for Channel name */
|
||||
QString label1Str("<span style=\"font-size:11pt; font-weight:500;"
|
||||
"color:#000000;\">%1</span>");
|
||||
|
||||
ui.labeltext->setText( label1Str.arg(tr("<strong>Friends Files</strong>")));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -763,7 +771,11 @@ void SharedFilesDialog::showFrameSplitted(bool show)
|
|||
|
||||
ui.localButton->setChecked(false);
|
||||
ui.remoteButton->setChecked(false);
|
||||
|
||||
/* set textcolor for Channel name */
|
||||
QString label2Str("<span style=\"font-size:11pt; font-weight:500;"
|
||||
"color:#000000;\">%1</span>");
|
||||
|
||||
ui.labeltext->setText(tr("<strong>Files</strong>"));
|
||||
ui.labeltext->setText( label2Str.arg(tr("<strong>Files</strong>")));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue