mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
statusbar: remove width_user
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
adf732dd9f
commit
2fa76f9237
2 changed files with 4 additions and 8 deletions
10
statusbar.c
10
statusbar.c
|
@ -358,7 +358,7 @@ statusbar_position_update(statusbar_t *statusbar)
|
|||
switch(statusbar->position)
|
||||
{
|
||||
case Right:
|
||||
if(statusbar->width_user)
|
||||
if(statusbar->width > 0)
|
||||
wingeometry.height = statusbar->width;
|
||||
else
|
||||
wingeometry.height = area.height;
|
||||
|
@ -380,7 +380,7 @@ statusbar_position_update(statusbar_t *statusbar)
|
|||
}
|
||||
break;
|
||||
case Left:
|
||||
if(statusbar->width_user)
|
||||
if(statusbar->width > 0)
|
||||
wingeometry.height = statusbar->width;
|
||||
else
|
||||
wingeometry.height = area.height;
|
||||
|
@ -401,7 +401,7 @@ statusbar_position_update(statusbar_t *statusbar)
|
|||
}
|
||||
break;
|
||||
case Bottom:
|
||||
if(statusbar->width_user)
|
||||
if(statusbar->width > 0)
|
||||
wingeometry.width = statusbar->width;
|
||||
else
|
||||
wingeometry.width = area.width;
|
||||
|
@ -423,7 +423,7 @@ statusbar_position_update(statusbar_t *statusbar)
|
|||
}
|
||||
break;
|
||||
default:
|
||||
if(statusbar->width_user)
|
||||
if(statusbar->width > 0)
|
||||
wingeometry.width = statusbar->width;
|
||||
else
|
||||
wingeometry.width = area.width;
|
||||
|
@ -549,8 +549,6 @@ luaA_statusbar_new(lua_State *L)
|
|||
sb->align = draw_align_fromstr(buf, len);
|
||||
|
||||
sb->width = luaA_getopt_number(L, 2, "width", 0);
|
||||
if(sb->width > 0)
|
||||
sb->width_user = true;
|
||||
sb->height = luaA_getopt_number(L, 2, "height", 0);
|
||||
if(sb->height <= 0)
|
||||
/* 1.5 as default factor, it fits nice but no one knows why */
|
||||
|
|
|
@ -226,8 +226,6 @@ struct statusbar_t
|
|||
int width;
|
||||
/** Bar height */
|
||||
int height;
|
||||
/** True if user specified width */
|
||||
bool width_user;
|
||||
/** Bar position */
|
||||
position_t position;
|
||||
/** Alignment */
|
||||
|
|
Loading…
Reference in a new issue