little design fixes

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2308 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-02-14 01:34:14 +00:00
parent 23b2a9cce0
commit 2f43e4152c
7 changed files with 67 additions and 29 deletions

View file

@ -800,7 +800,7 @@ void SharedFilesDialog::showFrame(bool show)
ui.splittedButton->setChecked(false);
/* set textcolor for Channel name */
QString labelStr("<span style=\"font-size:11pt; font-weight:500;"
QString labelStr("<span style=\"font-size:10pt; font-weight:500;"
"color:#000000;\">%1</span>");
ui.labeltext->setText( labelStr.arg(tr("<strong>My Shared Files</strong>")));
@ -817,11 +817,7 @@ void SharedFilesDialog::showFrameRemote(bool show)
ui.localButton->setChecked(false);
ui.splittedButton->setChecked(false);
/* 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>")));
ui.labeltext->setText( tr("<strong>Friends Files</strong>"));
}
}
@ -836,11 +832,7 @@ 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( label2Str.arg(tr("<strong>Files</strong>")));
ui.labeltext->setText( tr("<strong>Files</strong>"));
}
}