Skip to content

Commit

Permalink
Fixes for 0.18.27
Browse files Browse the repository at this point in the history
  • Loading branch information
Bilka2 committed May 26, 2020
1 parent 4ef15eb commit b32b6be
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
---------------------------------------------------------------------------------------------------
Version: 4.0.1
Date: 26. 05. 2020
Minor Features:
- Updated for 0.18.27.
---------------------------------------------------------------------------------------------------
Version: 4.0.0
Date: 25. 01. 2020
Minor Features:
Expand Down
4 changes: 2 additions & 2 deletions info.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "ChangeMapSettings",
"version": "4.0.0",
"version": "4.0.1",
"factorio_version" : "0.18",
"title": "Change Map Settings",
"author": "Bilka",
"description": "Allows you to change your map and map generation settings at any time you want.",
"dependencies": [ "base >= 0.18.0" ]
"dependencies": [ "base >= 0.18.27" ]
}
4 changes: 2 additions & 2 deletions map_gen_settings_gui.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ map_gen_gui.create = function(parent)
local resource_scroll_pane = frame1.add{
type = "scroll-pane",
name = ENTIRE_PREFIX .. "resource-scroll-pane",
style ="scroll_pane_light"
style ="scroll_pane_in_shallow_frame"
}
resource_scroll_pane.style.maximal_height = 300
map_gen_gui.create_resource_table(resource_scroll_pane)
Expand All @@ -32,7 +32,7 @@ map_gen_gui.create = function(parent)
local terrain_scroll_pane = frame2.add{
type = "scroll-pane",
name = ENTIRE_PREFIX .. "terrain-scroll-pane",
style ="scroll_pane_light"
style ="scroll_pane_in_shallow_frame"
}
terrain_scroll_pane.style.maximal_height = 150
map_gen_gui.create_controls_with_scale_table(terrain_scroll_pane)
Expand Down

0 comments on commit b32b6be

Please sign in to comment.