diff options
| author | Tony Crisci <tony@dubstepdish.com> | 2018-03-29 12:15:31 -0400 | 
|---|---|---|
| committer | Tony Crisci <tony@dubstepdish.com> | 2018-03-29 14:21:42 -0400 | 
| commit | 874f009866abaf8ca43ed4cd88a69d22a3fbfc5a (patch) | |
| tree | 05dff1efd73807aded434527ed1774250314116e /sway/tree/view.c | |
| parent | b1984133a9addcdae70fb4ac58af2f387fcc3707 (diff) | |
| download | sway-874f009866abaf8ca43ed4cd88a69d22a3fbfc5a.tar.xz | |
move tree includes to their own directory
Diffstat (limited to 'sway/tree/view.c')
| -rw-r--r-- | sway/tree/view.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c index 9499adca..20e657a2 100644 --- a/sway/tree/view.c +++ b/sway/tree/view.c @@ -1,8 +1,8 @@  #include <wayland-server.h>  #include <wlr/types/wlr_output_layout.h> -#include "sway/container.h" -#include "sway/layout.h" -#include "sway/view.h" +#include "sway/tree/container.h" +#include "sway/tree/layout.h" +#include "sway/tree/view.h"  const char *view_get_title(struct sway_view *view) {  	if (view->iface.get_prop) { @@ -45,6 +45,7 @@ void view_set_size(struct sway_view *view, int width, int height) {  	}  } +// TODO make view coordinates  void view_set_position(struct sway_view *view, double ox, double oy) {  	if (view->iface.set_position) {  		struct wlr_box box = {  | 
