Make splitting a container which was already split a noop

This commit is contained in:
Michael Stapelberg
2010-06-01 22:45:18 +02:00
parent 18f7e1ffd1
commit b467242d69
3 changed files with 12 additions and 2 deletions

View File

@ -41,7 +41,7 @@ typedef struct Window i3Window;
* Helper types
*****************************************************************************/
typedef enum { D_LEFT, D_RIGHT, D_UP, D_DOWN } direction_t;
typedef enum { HORIZ, VERT, NO_ORIENTATION } orientation_t;
typedef enum { NO_ORIENTATION = 0, HORIZ, VERT } orientation_t;
enum {
BIND_NONE = 0,