column sizes for Android must be larger
This commit is contained in:
parent
e5aedf6998
commit
2c515ae6c1
1 changed files with 7 additions and 0 deletions
|
@ -77,9 +77,16 @@ CConnectDlg::CConnectDlg ( const bool bNewShowCompleteRegList,
|
||||||
|
|
||||||
// set up list view for connected clients (note that the last column size
|
// set up list view for connected clients (note that the last column size
|
||||||
// must not be specified since this column takes all the remaining space)
|
// must not be specified since this column takes all the remaining space)
|
||||||
|
#ifdef ANDROID
|
||||||
|
// for Android we need larger numbers because of the default font size
|
||||||
|
lvwServers->setColumnWidth ( 0, 200 );
|
||||||
|
lvwServers->setColumnWidth ( 1, 130 );
|
||||||
|
lvwServers->setColumnWidth ( 2, 100 );
|
||||||
|
#else
|
||||||
lvwServers->setColumnWidth ( 0, 165 );
|
lvwServers->setColumnWidth ( 0, 165 );
|
||||||
lvwServers->setColumnWidth ( 1, 65 );
|
lvwServers->setColumnWidth ( 1, 65 );
|
||||||
lvwServers->setColumnWidth ( 2, 60 );
|
lvwServers->setColumnWidth ( 2, 60 );
|
||||||
|
#endif
|
||||||
lvwServers->clear();
|
lvwServers->clear();
|
||||||
|
|
||||||
// add invisible column which is used for sorting the list
|
// add invisible column which is used for sorting the list
|
||||||
|
|
Loading…
Reference in a new issue