Skip to content

Commit

Permalink
Align bomb plant and footstep visualization images vertically to the …
Browse files Browse the repository at this point in the history
…bottom of their parent panels
  • Loading branch information
danielkrupinski committed Nov 20, 2023
1 parent c8e75d9 commit c3598fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Features/Sound/BombPlantVisualizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ var bombPlantPanel = $.CreatePanel('Panel', $.GetContextPanel().FindChildInLayou
$.CreatePanel('Image', bombPlantPanel, '', {
src: "s2r://panorama/images/icons/ui/chatwheel_bombat.svg",
style: "horizontal-align: center; vertical-align: center; img-shadow: 0px 0px 1px 3 #000000;",
style: "horizontal-align: center; vertical-align: bottom; img-shadow: 0px 0px 1px 3 #000000;",
textureheight: "64"
});
})();)", "", 0);
Expand Down
2 changes: 1 addition & 1 deletion Source/Features/Sound/FootstepVisualizer.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var footstepPanel = $.CreatePanel('Panel', $.GetContextPanel().FindChildInLayout
$.CreatePanel('Image', footstepPanel, '', {
src: "s2r://panorama/images/icons/equipment/stomp_damage.svg",
style: "horizontal-align: center; vertical-align: center; img-shadow: 0px 0px 1px 3 #000000;"
style: "horizontal-align: center; vertical-align: bottom; img-shadow: 0px 0px 1px 3 #000000;"
});
})();)", "", 0);
}
Expand Down

0 comments on commit c3598fe

Please sign in to comment.