set for some labels a minimum size, for bether resize of the gui

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3791 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
defnax 2010-11-14 17:03:32 +00:00
parent 696cfe3a29
commit 173dbfc18d
2 changed files with 4 additions and 0 deletions

View File

@ -341,6 +341,8 @@ MessagesDialog::MessagesDialog(QWidget *parent)
mFont = QFont("Arial", 10, QFont::Bold);
ui.subjectText->setFont(mFont);
ui.filterPatternLineEdit->setMinimumWidth(20);
//setting default filter by column as subject
proxyModel->setFilterKeyColumn(FilterColumnFromComboBox(ui.filterColumnComboBox->currentIndex()));

View File

@ -154,6 +154,8 @@ NetworkDialog::NetworkDialog(QWidget *parent)
ui.networkTab->addTab(new TrustView(),QString(tr("Authentication matrix")));
ui.networkTab->addTab(networkview = new NetworkView(),QString(tr("Network View")));
ui.showUnvalidKeys->setMinimumWidth(20);
QString version = "-";
std::map<std::string, std::string>::iterator vit;
std::map<std::string, std::string> versions;