mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-10 01:55:19 -04:00
* removed streching for Remote Directories
* added icon Label for Messages Toaster * Set userfriendly Column names for Remote/local Directories to Friends Directories and My Directories * removed not needed path show in Rank git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@962 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
171a5bef0d
commit
fc3fe52518
6 changed files with 157 additions and 193 deletions
|
@ -110,28 +110,25 @@ SharedFilesDialog::SharedFilesDialog(QWidget *parent)
|
|||
l_header->setResizeMode (2, QHeaderView::Interactive);
|
||||
l_header->setResizeMode (3, QHeaderView::Interactive);
|
||||
|
||||
l_header->resizeSection ( 0, 210 );
|
||||
l_header->resizeSection ( 0, 490 );
|
||||
l_header->resizeSection ( 1, 70 );
|
||||
l_header->resizeSection ( 2, 100 );
|
||||
l_header->resizeSection ( 2, 60 );
|
||||
l_header->resizeSection ( 3, 100 );
|
||||
|
||||
/* Set header resize modes and initial section sizes */
|
||||
QHeaderView * r_header = ui.remoteDirTreeView->header () ;
|
||||
#if defined(Q_OS_WIN32)
|
||||
|
||||
r_header->setResizeMode (0, QHeaderView::Interactive);
|
||||
r_header->setStretchLastSection(true);
|
||||
#else
|
||||
r_header->setResizeMode (0, QHeaderView::Stretch);
|
||||
r_header->setStretchLastSection(false);
|
||||
#endif
|
||||
|
||||
r_header->setResizeMode (1, QHeaderView::Fixed);
|
||||
r_header->setResizeMode (2, QHeaderView::Fixed);
|
||||
r_header->setResizeMode (3, QHeaderView::Fixed);
|
||||
|
||||
|
||||
r_header->resizeSection ( 0, 250 );
|
||||
r_header->resizeSection ( 0, 490 );
|
||||
r_header->resizeSection ( 1, 70 );
|
||||
r_header->resizeSection ( 2, 100 );
|
||||
r_header->resizeSection ( 2, 60 );
|
||||
r_header->resizeSection ( 3, 100 );
|
||||
|
||||
l_header->setHighlightSections(false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue