diff options
Diffstat (limited to 'draw.c')
| -rw-r--r-- | draw.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -23,7 +23,9 @@ void draw_init(const char *font, int height, int x_padding, int y_padding) void draw(Window *win) { - double scale = window_get_scale(win); + // FIXME: Does not work for scale != 1 + //double scale = window_get_scale(win); + double scale = 1; int screen_width, screen_height; window_get_screen_size(win, &screen_width, &screen_height); |
