mirror of
https://github.com/swaywm/sway.git
synced 2024-11-13 22:14:08 +01:00
Merge pull request #1780 from emersion/fix-swaybar-hidpi-rounding
Fix swaybar HiDPI rounding issue
This commit is contained in:
commit
3679323ce5
@ -37,8 +37,9 @@ static uint32_t render_status_line_error(cairo_t *cairo,
|
|||||||
&text_width, &text_height, output->scale, false, "%s", error);
|
&text_width, &text_height, output->scale, false, "%s", error);
|
||||||
|
|
||||||
uint32_t ideal_height = text_height + ws_vertical_padding * 2;
|
uint32_t ideal_height = text_height + ws_vertical_padding * 2;
|
||||||
if (height < ideal_height) {
|
uint32_t ideal_surface_height = ideal_height / output->scale;
|
||||||
return ideal_height / output->scale;
|
if (surface_height < ideal_surface_height) {
|
||||||
|
return ideal_surface_height;
|
||||||
}
|
}
|
||||||
*x -= text_width + margin;
|
*x -= text_width + margin;
|
||||||
|
|
||||||
@ -46,7 +47,7 @@ static uint32_t render_status_line_error(cairo_t *cairo,
|
|||||||
cairo_move_to(cairo, *x, (int)floor(text_y));
|
cairo_move_to(cairo, *x, (int)floor(text_y));
|
||||||
pango_printf(cairo, config->font, output->scale, false, "%s", error);
|
pango_printf(cairo, config->font, output->scale, false, "%s", error);
|
||||||
*x -= margin;
|
*x -= margin;
|
||||||
return ideal_height / output->scale;
|
return surface_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t render_status_line_text(cairo_t *cairo,
|
static uint32_t render_status_line_text(cairo_t *cairo,
|
||||||
@ -69,8 +70,9 @@ static uint32_t render_status_line_text(cairo_t *cairo,
|
|||||||
int margin = 3 * output->scale;
|
int margin = 3 * output->scale;
|
||||||
|
|
||||||
uint32_t ideal_height = text_height + ws_vertical_padding * 2;
|
uint32_t ideal_height = text_height + ws_vertical_padding * 2;
|
||||||
if (height < ideal_height) {
|
uint32_t ideal_surface_height = ideal_height / output->scale;
|
||||||
return ideal_height / output->scale;
|
if (surface_height < ideal_surface_height) {
|
||||||
|
return ideal_surface_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
*x -= text_width + margin;
|
*x -= text_width + margin;
|
||||||
@ -79,7 +81,7 @@ static uint32_t render_status_line_text(cairo_t *cairo,
|
|||||||
pango_printf(cairo, config->font, output->scale,
|
pango_printf(cairo, config->font, output->scale,
|
||||||
config->pango_markup, "%s", text);
|
config->pango_markup, "%s", text);
|
||||||
*x -= margin;
|
*x -= margin;
|
||||||
return ideal_height / output->scale;
|
return surface_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void render_sharp_line(cairo_t *cairo, uint32_t color,
|
static void render_sharp_line(cairo_t *cairo, uint32_t color,
|
||||||
@ -137,8 +139,9 @@ static uint32_t render_status_block(cairo_t *cairo,
|
|||||||
|
|
||||||
double block_width = width;
|
double block_width = width;
|
||||||
uint32_t ideal_height = text_height + ws_vertical_padding * 2;
|
uint32_t ideal_height = text_height + ws_vertical_padding * 2;
|
||||||
if (height < ideal_height) {
|
uint32_t ideal_surface_height = ideal_height / output->scale;
|
||||||
return ideal_height / output->scale;
|
if (surface_height < ideal_surface_height) {
|
||||||
|
return ideal_surface_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
*x -= width;
|
*x -= width;
|
||||||
@ -249,7 +252,7 @@ static uint32_t render_status_block(cairo_t *cairo,
|
|||||||
cairo_stroke(cairo);
|
cairo_stroke(cairo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return ideal_height / output->scale;
|
return surface_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t render_status_line_i3bar(cairo_t *cairo,
|
static uint32_t render_status_line_i3bar(cairo_t *cairo,
|
||||||
@ -291,7 +294,6 @@ static uint32_t render_status_line(cairo_t *cairo,
|
|||||||
static uint32_t render_binding_mode_indicator(cairo_t *cairo,
|
static uint32_t render_binding_mode_indicator(cairo_t *cairo,
|
||||||
struct swaybar_output *output, struct swaybar_config *config,
|
struct swaybar_output *output, struct swaybar_config *config,
|
||||||
const char *mode, double x, uint32_t surface_height) {
|
const char *mode, double x, uint32_t surface_height) {
|
||||||
|
|
||||||
uint32_t height = surface_height * output->scale;
|
uint32_t height = surface_height * output->scale;
|
||||||
|
|
||||||
int text_width, text_height;
|
int text_width, text_height;
|
||||||
@ -304,8 +306,9 @@ static uint32_t render_binding_mode_indicator(cairo_t *cairo,
|
|||||||
|
|
||||||
uint32_t ideal_height = text_height + ws_vertical_padding * 2
|
uint32_t ideal_height = text_height + ws_vertical_padding * 2
|
||||||
+ border_width * 2;
|
+ border_width * 2;
|
||||||
if (height < ideal_height) {
|
uint32_t ideal_surface_height = ideal_height / output->scale;
|
||||||
return ideal_height / output->scale;
|
if (surface_height < ideal_surface_height) {
|
||||||
|
return ideal_surface_height;
|
||||||
}
|
}
|
||||||
uint32_t width = text_width + ws_horizontal_padding * 2 + border_width * 2;
|
uint32_t width = text_width + ws_horizontal_padding * 2 + border_width * 2;
|
||||||
|
|
||||||
@ -327,7 +330,7 @@ static uint32_t render_binding_mode_indicator(cairo_t *cairo,
|
|||||||
cairo_set_source_u32(cairo, config->colors.binding_mode.text);
|
cairo_set_source_u32(cairo, config->colors.binding_mode.text);
|
||||||
cairo_move_to(cairo, x + width / 2 - text_width / 2, (int)floor(text_y));
|
cairo_move_to(cairo, x + width / 2 - text_width / 2, (int)floor(text_y));
|
||||||
pango_printf(cairo, config->font, output->scale, true, "%s", mode);
|
pango_printf(cairo, config->font, output->scale, true, "%s", mode);
|
||||||
return ideal_height / output->scale;
|
return surface_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const char *strip_workspace_number(const char *ws_name) {
|
static const char *strip_workspace_number(const char *ws_name) {
|
||||||
@ -379,8 +382,9 @@ static uint32_t render_workspace_button(cairo_t *cairo,
|
|||||||
|
|
||||||
uint32_t ideal_height = ws_vertical_padding * 2 + text_height
|
uint32_t ideal_height = ws_vertical_padding * 2 + text_height
|
||||||
+ border_width * 2;
|
+ border_width * 2;
|
||||||
if (height < ideal_height) {
|
uint32_t ideal_surface_height = ideal_height / output->scale;
|
||||||
return ideal_height / output->scale;
|
if (surface_height < ideal_surface_height) {
|
||||||
|
return ideal_surface_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint32_t width = ws_horizontal_padding * 2 + text_width + border_width * 2;
|
uint32_t width = ws_horizontal_padding * 2 + text_width + border_width * 2;
|
||||||
@ -415,7 +419,7 @@ static uint32_t render_workspace_button(cairo_t *cairo,
|
|||||||
wl_list_insert(&output->hotspots, &hotspot->link);
|
wl_list_insert(&output->hotspots, &hotspot->link);
|
||||||
|
|
||||||
*x += width;
|
*x += width;
|
||||||
return height / output->scale;
|
return surface_height;
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint32_t render_to_cairo(cairo_t *cairo,
|
static uint32_t render_to_cairo(cairo_t *cairo,
|
||||||
@ -484,8 +488,7 @@ void render_frame(struct swaybar *bar, struct swaybar_output *output) {
|
|||||||
}
|
}
|
||||||
if (height != output->height) {
|
if (height != output->height) {
|
||||||
// Reconfigure surface
|
// Reconfigure surface
|
||||||
zwlr_layer_surface_v1_set_size(
|
zwlr_layer_surface_v1_set_size(output->layer_surface, 0, height);
|
||||||
output->layer_surface, 0, height);
|
|
||||||
zwlr_layer_surface_v1_set_exclusive_zone(output->layer_surface, height);
|
zwlr_layer_surface_v1_set_exclusive_zone(output->layer_surface, height);
|
||||||
// TODO: this could infinite loop if the compositor assigns us a
|
// TODO: this could infinite loop if the compositor assigns us a
|
||||||
// different height than what we asked for
|
// different height than what we asked for
|
||||||
|
Loading…
Reference in New Issue
Block a user