mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-02 19:43:55 -07:00
reduced game selector minimum height; server race conditions fixed
This commit is contained in:
parent
7ae0e31964
commit
2d8b12a576
9 changed files with 40 additions and 45 deletions
|
|
@ -9,7 +9,7 @@ LocalServerInterface::LocalServerInterface(LocalServer *_server)
|
|||
|
||||
LocalServerInterface::~LocalServerInterface()
|
||||
{
|
||||
server->removeClient(this);
|
||||
prepareDestroy();
|
||||
}
|
||||
|
||||
void LocalServerInterface::sendProtocolItem(ProtocolItem *item, bool deleteItem)
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ GameSelector::GameSelector(AbstractClient *_client, TabRoom *_room, QWidget *par
|
|||
setLayout(mainLayout);
|
||||
|
||||
setMinimumWidth((qreal) (gameListView->columnWidth(0) * gameListModel->columnCount()) / 1.5);
|
||||
setMinimumHeight(400);
|
||||
setMinimumHeight(200);
|
||||
|
||||
connect(showFullGamesCheckBox, SIGNAL(stateChanged(int)), this, SLOT(showFullGamesChanged(int)));
|
||||
connect(createButton, SIGNAL(clicked()), this, SLOT(actCreate()));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue