mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-22 19:33:03 +00:00
allow negative image paddings and y_offsets
This commit is contained in:
parent
f60b9d6d5c
commit
ec5d88d9f5
2 changed files with 6 additions and 6 deletions
|
@ -316,19 +316,19 @@ bool image_parse_sub_domain(struct image* image, FILE* rsp, struct token propert
|
|||
ANIMATE(image_set_padding_left,
|
||||
image,
|
||||
image->padding_left,
|
||||
token_to_uint32t(get_token(&message)));
|
||||
token_to_int(get_token(&message)));
|
||||
}
|
||||
else if (token_equals(property, PROPERTY_PADDING_RIGHT)) {
|
||||
ANIMATE(image_set_padding_right,
|
||||
image,
|
||||
image->padding_right,
|
||||
token_to_uint32t(get_token(&message)));
|
||||
token_to_int(get_token(&message)));
|
||||
}
|
||||
else if (token_equals(property, PROPERTY_YOFFSET)) {
|
||||
ANIMATE(image_set_yoffset,
|
||||
image,
|
||||
image->y_offset,
|
||||
token_to_uint32t(get_token(&message)));
|
||||
token_to_int(get_token(&message)));
|
||||
}
|
||||
else if (token_equals(property, PROPERTY_BORDER_WIDTH)) {
|
||||
ANIMATE_FLOAT(image_set_border_width,
|
||||
|
|
|
@ -22,9 +22,9 @@ struct image {
|
|||
float border_width;
|
||||
uint32_t corner_radius;
|
||||
|
||||
uint32_t padding_left;
|
||||
uint32_t padding_right;
|
||||
uint32_t y_offset;
|
||||
int padding_left;
|
||||
int padding_right;
|
||||
int y_offset;
|
||||
};
|
||||
|
||||
void image_init(struct image* image);
|
||||
|
|
Loading…
Reference in a new issue