Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Donald Haase
Cockatrice
Commits
ec45a099
Commit
ec45a099
authored
Jun 22, 2015
by
Fabio Bas
Browse files
Made items not collapsible; changed players widget's min height from 60 to 40 px
parent
c400d6d4
Changes
2
Hide whitespace changes
Inline
Side-by-side
cockatrice/src/playerlistwidget.cpp
View file @
ec45a099
...
...
@@ -67,7 +67,7 @@ PlayerListWidget::PlayerListWidget(TabSupervisor *_tabSupervisor, AbstractClient
}
else
userContextMenu
=
0
;
setMinimumHeight
(
6
0
);
setMinimumHeight
(
4
0
);
setIconSize
(
QSize
(
20
,
15
));
setColumnCount
(
6
);
setColumnWidth
(
0
,
20
);
...
...
cockatrice/src/tab_game.cpp
View file @
ec45a099
...
...
@@ -358,7 +358,8 @@ TabGame::TabGame(TabSupervisor *_tabSupervisor, GameReplay *_replay)
setLayout
(
superMainLayout
);
splitter
->
restoreState
(
settingsCache
->
getTabGameSplitterSizes
());
splitter
->
setChildrenCollapsible
(
false
);
messageLog
->
logReplayStarted
(
gameInfo
.
game_id
());
}
...
...
@@ -490,6 +491,7 @@ TabGame::TabGame(TabSupervisor *_tabSupervisor, QList<AbstractClient *> &_client
setLayout
(
mainLayout
);
splitter
->
restoreState
(
settingsCache
->
getTabGameSplitterSizes
());
splitter
->
setChildrenCollapsible
(
false
);
messageLog
->
logGameJoined
(
gameInfo
.
game_id
());
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment