Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions LSlib/prototyping/styles/styles-filler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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 ,
Expand Down Expand Up @@ -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,
}

Expand All @@ -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
}

Expand Down
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
6 changes: 3 additions & 3 deletions info.json
Original file line number Diff line number Diff line change
@@ -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"
]
}