diff --git a/LSlib/prototyping/styles/styles-filler.lua b/LSlib/prototyping/styles/styles-filler.lua index 34f5421..f66a1f2 100644 --- a/LSlib/prototyping/styles/styles-filler.lua +++ b/LSlib/prototyping/styles/styles-filler.lua @@ -10,7 +10,10 @@ if not LSlib.styles then require "styles" else name = "LSlib_default_filler", parent = "frame", - padding = 0, + top_padding = 0, + bottom_padding = 0, + left_padding = 0, + right_padding = 0, horizontally_stretchable = "on", left_margin = fillerStyle.left_margin , @@ -38,7 +41,7 @@ if not LSlib.styles then require "styles" else vertical_align = guiStyles["frame"].header_flow_style.vertical_align, vertically_stretchable = false, --top_margin = -2, - bottom_padding = guiStyles["frame"].header_flow_style.bottom_padding - 2, + bottom_padding = (guiStyles["frame"].header_flow_style.bottom_padding or 0) - 2, horizontal_spacing = guiStyles["frame"].header_flow_style.horizontal_spacing, } @@ -59,7 +62,7 @@ if not LSlib.styles then require "styles" else LSlib.styles.addWidgetStyle{ -- filler itself name = "LSlib_default_draggable_header", parent = "LSlib_default_draggable_filler", - + height = guiStyles["frame"]["header_filler_style"].height } diff --git a/changelog.txt b/changelog.txt index 2c7c5c5..6353c17 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,4 +1,9 @@ --------------------------------------------------------------------------------------------------- +Version: 2025.10.15 +Date: 15. 10. 2025 + Features: + - Updated to 2.0.69 +--------------------------------------------------------------------------------------------------- Version: 2023.03.24 Date: 24. 03. 2023 Bugfixes: diff --git a/info.json b/info.json index c9629e1..570a31f 100644 --- a/info.json +++ b/info.json @@ -1,12 +1,12 @@ { "name": "LSlib", - "version": "2023.03.24", - "factorio_version": "1.1", + "version": "2025.10.15", + "factorio_version": "2.0", "title": "Lovely_santa's library of knowledge", "author": "lovely_santa", "contact": "https://mods.factorio.com/mod/LSlib/discussion", "description": "Library used by mods created by lovely_santa", "dependencies": [ - "base >= 1.1.5" + "base >= 2.0.69" ] }