mirror of
https://github.com/awesomeWM/awesome
synced 2024-11-17 07:47:41 +01:00
preinit in config.c
This commit is contained in:
parent
5180613fe5
commit
4d117da0ec
4 changed files with 4 additions and 7 deletions
|
@ -135,9 +135,6 @@ setup(int screen)
|
|||
|
||||
grabkeys(phys_screen);
|
||||
|
||||
for(statusbar = globalconf.screens[screen].statusbar; statusbar; statusbar = statusbar->next)
|
||||
statusbar_preinit(statusbar, screen);
|
||||
|
||||
for(statusbar = globalconf.screens[screen].statusbar; statusbar; statusbar = statusbar->next)
|
||||
statusbar_init(statusbar);
|
||||
}
|
||||
|
|
2
config.c
2
config.c
|
@ -341,7 +341,9 @@ config_parse_screen(cfg_t *cfg, int screen)
|
|||
statusbar->height = cfg_getint(cfgsectmp, "height");
|
||||
statusbar->width = cfg_getint(cfgsectmp, "width");
|
||||
statusbar->name = a_strdup(cfg_title(cfgsectmp));
|
||||
statusbar->screen = screen;
|
||||
create_widgets(cfgsectmp, statusbar);
|
||||
statusbar_preinit(statusbar);
|
||||
statusbar_list_push(&virtscreen->statusbar, statusbar);
|
||||
}
|
||||
|
||||
|
|
|
@ -162,11 +162,9 @@ statusbar_display(Statusbar *statusbar)
|
|||
}
|
||||
|
||||
void
|
||||
statusbar_preinit(Statusbar *statusbar, int screen)
|
||||
statusbar_preinit(Statusbar *statusbar)
|
||||
{
|
||||
Widget *widget;
|
||||
|
||||
statusbar->screen = screen;
|
||||
|
||||
if(statusbar->height <= 0)
|
||||
{
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include "structs.h"
|
||||
|
||||
void statusbar_refresh(void);
|
||||
void statusbar_preinit(Statusbar *, int);
|
||||
void statusbar_preinit(Statusbar *);
|
||||
void statusbar_init(Statusbar *);
|
||||
void statusbar_display(Statusbar *);
|
||||
Position statusbar_get_position_from_str(const char *);
|
||||
|
|
Loading…
Reference in a new issue