Move width_increment and height_increment from Con to Window.

relates to #665
This commit is contained in:
Ingo Bürk
2015-08-30 23:04:20 +02:00
parent 80ce13e44e
commit f43a15acde
4 changed files with 27 additions and 24 deletions

View File

@ -414,6 +414,10 @@ struct Window {
* increments (see below). */
int base_width;
int base_height;
/* minimum increment size specified for the window (in pixels) */
int width_increment;
int height_increment;
};
/**
@ -582,10 +586,6 @@ struct Con {
int border_width;
int current_border_width;
/* minimum increment size specified for the window (in pixels) */
int width_increment;
int height_increment;
struct Window *window;
/* timer used for disabling urgency */