mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-22 03:13:02 +00:00
Fixed off-by-1 error (#592)
This commit is contained in:
parent
44565c8177
commit
6f7b1ae1e9
1 changed files with 4 additions and 4 deletions
|
@ -244,10 +244,10 @@ static void bar_calculate_bounds_top_bottom(struct bar* bar) {
|
|||
- center_length) / 2 - 1;
|
||||
|
||||
uint32_t bar_center_right_first_item_x = (bar->window.frame.size.width
|
||||
+ notch_width) / 2 - 1;
|
||||
+ notch_width) / 2;
|
||||
|
||||
uint32_t bar_center_left_first_item_x = (bar->window.frame.size.width
|
||||
- notch_width) / 2 - 1;
|
||||
- notch_width) / 2;
|
||||
|
||||
uint32_t* next_position = NULL;
|
||||
uint32_t y = bar->window.frame.size.height / 2;
|
||||
|
@ -364,10 +364,10 @@ static void bar_calculate_bounds_left_right(struct bar* bar) {
|
|||
- center_length) / 2 - 1;
|
||||
|
||||
uint32_t bar_center_right_first_item_y = (bar->window.frame.size.height
|
||||
+ notch_width) / 2 - 1;
|
||||
+ notch_width) / 2;
|
||||
|
||||
uint32_t bar_center_left_first_item_y = (bar->window.frame.size.height
|
||||
- notch_width) / 2 - 1;
|
||||
- notch_width) / 2 ;
|
||||
|
||||
uint32_t* next_position = NULL;
|
||||
|
||||
|
|
Loading…
Reference in a new issue