Skip to content

Commit

Permalink
Merge branch 'dev2.0' of https://github.com/modded-factorio/bobsmods
Browse files Browse the repository at this point in the history
…into dev2.0
  • Loading branch information
KiwiHawk committed Oct 27, 2024
2 parents 4161b2b + 3bf16fe commit 570a342
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions bobclasses/prototypes/style.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ data.raw["gui-style"].default.bob_button_flow = {
type = "horizontal_flow_style",
parent = "horizontal_flow",
vertical_align = "center",
horizontally_stretchable = "on",
horizontally_stretchable = true,
}

data.raw["gui-style"].default.bob_draggable_header = {
Expand All @@ -32,8 +32,8 @@ data.raw["gui-style"].default.bob_draggable_header = {
minimal_width = 0,
padding = -8,
height = 24,
horizontally_stretchable = "on",
vertically_stretchable = "on",
horizontally_stretchable = true,
vertically_stretchable = true,
}

data.raw["gui-style"].default.bob_draggable_footer = {
Expand All @@ -42,8 +42,8 @@ data.raw["gui-style"].default.bob_draggable_footer = {
minimal_width = 0,
padding = -8,
height = 32,
horizontally_stretchable = "on",
vertically_stretchable = "on",
horizontally_stretchable = true,
vertically_stretchable = true,
}

data.raw["gui-style"].default.green_button = {
Expand Down
10 changes: 5 additions & 5 deletions bobinserters/prototypes/styles.lua
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ data.raw["gui-style"].default.bob_button_flow = {
type = "horizontal_flow_style",
parent = "horizontal_flow",
vertical_align = "center",
horizontally_stretchable = "on",
horizontally_stretchable = true,
}

data.raw["gui-style"].default.bob_draggable_header = {
Expand All @@ -109,8 +109,8 @@ data.raw["gui-style"].default.bob_draggable_header = {
minimal_width = 0,
padding = -8,
height = 24,
horizontally_stretchable = "on",
vertically_stretchable = "on",
horizontally_stretchable = true,
vertically_stretchable = true,
}

data.raw["gui-style"].default.bob_draggable_footer = {
Expand All @@ -119,8 +119,8 @@ data.raw["gui-style"].default.bob_draggable_footer = {
minimal_width = 0,
padding = -8,
height = 32,
horizontally_stretchable = "on",
vertically_stretchable = "on",
horizontally_stretchable = true,
vertically_stretchable = true,
}

data.raw["gui-style"].default.bob_inserter_checkbox = {
Expand Down

0 comments on commit 570a342

Please sign in to comment.