aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authoriamcheeseman <[hidden email]>2026-03-02 16:36:23 -0500
committeriamcheeseman <[hidden email]>2026-03-02 16:36:23 -0500
commita996c83e1079f49830138858f6c54816102daeba (patch)
tree4955b36f7d4db5bcfbb26f818a536e409a1b296a /src
parent59c8549152c38d934c8eb7820a61f147c0ce1c8e (diff)
add my own bar
Diffstat (limited to 'src')
-rw-r--r--src/tsar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tsar.c b/src/tsar.c
index f2fbcc3..00eed2f 100644
--- a/src/tsar.c
+++ b/src/tsar.c
@@ -139,7 +139,7 @@ void draw_comp_set(float pos_ratio, comp_t **set, int size) {
int x = (bar_width - width) * pos_ratio;
x += padding * 2*(0.5 - pos_ratio); // Magic formula lol
- int y = (bar_height - font->height) / 2;
+ int y = 0;//(bar_height - font->height) / 2;
for (int i = 0; i < size; i++) {
comp_t *comp = set[i];