mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-18 06:13:55 -07:00
The show full games filter in the lobby should be off by default.
This was SVN commit r15978.
This commit is contained in:
parent
947abde749
commit
cbc49f43e6
2 changed files with 2 additions and 2 deletions
|
|
@ -79,7 +79,7 @@ function resetFilters()
|
|||
Engine.GetGUIObjectByName("mapSizeFilter").selected = 0
|
||||
Engine.GetGUIObjectByName("playersNumberFilter").selected = 0;
|
||||
Engine.GetGUIObjectByName("mapTypeFilter").selected = 0;
|
||||
Engine.GetGUIObjectByName("showFullFilter").checked = true;
|
||||
Engine.GetGUIObjectByName("showFullFilter").checked = false;
|
||||
|
||||
// Update the list of games
|
||||
updateGameList();
|
||||
|
|
|
|||
|
|
@ -219,7 +219,7 @@
|
|||
</object>
|
||||
<object name="showFullFilter"
|
||||
type="checkbox"
|
||||
checked="true"
|
||||
checked="false"
|
||||
style="ModernTickBox"
|
||||
size="0 0 20 20"
|
||||
font="sans-bold-13">
|
||||
|
|
|
|||
Loading…
Reference in a new issue