No real reason for using Bool here, we use ints everywhere else

This commit is contained in:
bakkeby 2020-04-26 16:46:10 +02:00
parent 14b7edd911
commit 904cc5962f

View File

@ -11,7 +11,7 @@ struct Pertag {
float mfacts[LENGTH(tags) + 1]; /* mfacts per tag */ float mfacts[LENGTH(tags) + 1]; /* mfacts per tag */
unsigned int sellts[LENGTH(tags) + 1]; /* selected layouts */ unsigned int sellts[LENGTH(tags) + 1]; /* selected layouts */
#if PERTAGBAR_PATCH #if PERTAGBAR_PATCH
Bool showbars[LENGTH(tags) + 1]; /* display bar for the current tag */ int showbars[LENGTH(tags) + 1]; /* display bar for the current tag */
#endif // PERTAGBAR_PATCH #endif // PERTAGBAR_PATCH
#if SWAPFOCUS_PATCH #if SWAPFOCUS_PATCH
Client *prevclient[LENGTH(tags) + 1]; Client *prevclient[LENGTH(tags) + 1];