mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-24 22:30:42 -04:00
fixed resize size of MessagesDialog
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@403 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
7c10e395b6
commit
351559becd
8 changed files with 118 additions and 86 deletions
|
@ -78,7 +78,8 @@ MessagesDialog::MessagesDialog(QWidget *parent)
|
|||
QHeaderView * msgwheader = ui.msgWidget->header () ;
|
||||
msgwheader->setResizeMode (0, QHeaderView::Interactive);
|
||||
|
||||
msgwheader->resizeSection ( 0, 125 );
|
||||
msgwheader->resizeSection ( 0, 140 );
|
||||
msgwheader->resizeSection ( 2, 150 );
|
||||
|
||||
/* Set header resize modes and initial section sizes */
|
||||
QHeaderView * msglheader = ui.msgList->header () ;
|
||||
|
@ -87,10 +88,10 @@ MessagesDialog::MessagesDialog(QWidget *parent)
|
|||
msglheader->setResizeMode (2, QHeaderView::Interactive);
|
||||
msglheader->setResizeMode (3, QHeaderView::Interactive);
|
||||
|
||||
msglheader->resizeSection ( 0, 125 );
|
||||
msglheader->resizeSection ( 0, 200 );
|
||||
msglheader->resizeSection ( 1, 100 );
|
||||
msglheader->resizeSection ( 2, 250 );
|
||||
msglheader->resizeSection ( 3, 50 );
|
||||
msglheader->resizeSection ( 2, 100 );
|
||||
msglheader->resizeSection ( 3, 200 );
|
||||
|
||||
|
||||
/* Hide platform specific features */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue