sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 3658777e47ea543267d0acb099c70e65bb0741b6
parent 76a3868ce8b4b43bb45bb69daa47bd0e25ce9255
Author: Mikkel Oscar Lyderik <mikkeloscar@gmail.com>
Date:   Tue,  1 Dec 2015 21:04:34 +0100

Use wlc_point instead of deprecated wlc_origin

Struct was renamed in wlc, use the new name.

Diffstat:
Msway/handlers.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sway/handlers.c b/sway/handlers.c @@ -82,7 +82,7 @@ static void handle_output_pre_render(wlc_handle output) { break; } } - + for (i = 0; i < desktop_shell.panels->length; ++i) { struct panel_config *config = desktop_shell.panels->items[i]; if (config->output == output) { @@ -92,16 +92,16 @@ static void handle_output_pre_render(wlc_handle output) { }; switch (desktop_shell.panel_position) { case DESKTOP_SHELL_PANEL_POSITION_TOP: - geo.origin = (struct wlc_origin){ 0, 0 }; + geo.origin = (struct wlc_point){ 0, 0 }; break; case DESKTOP_SHELL_PANEL_POSITION_BOTTOM: - geo.origin = (struct wlc_origin){ 0, resolution.h - size.h }; + geo.origin = (struct wlc_point){ 0, resolution.h - size.h }; break; case DESKTOP_SHELL_PANEL_POSITION_LEFT: - geo.origin = (struct wlc_origin){ 0, 0 }; + geo.origin = (struct wlc_point){ 0, 0 }; break; case DESKTOP_SHELL_PANEL_POSITION_RIGHT: - geo.origin = (struct wlc_origin){ resolution.w - size.w, 0 }; + geo.origin = (struct wlc_point){ resolution.w - size.w, 0 }; break; } wlc_surface_render(config->surface, &geo);