drawtext(m->ltsymbol, dc.norm, False);
dc.x += dc.w;
x = dc.x;
+#ifndef M10K
if(m == selmon) { /* status is only drawn on selected monitor */
dc.w = TEXTW(stext);
dc.x = m->ww - dc.w;
}
else
dc.x = m->ww;
+#else
+ dc.w = TEXTW(stext);
+ dc.x = m->ww - dc.w;
+
+ if(showsystray && m == selmon) {
+ dc.x -= getsystraywidth();
+ }
+
+ if(dc.x < x) {
+ dc.x = x;
+ dc.w = m->ww - x;
+ }
+
+ drawtext(stext, dc.norm, False);
+#endif /* M10K */
if((dc.w = dc.x - x) > bh) {
dc.x = x;
if(m->sel) {