mpanel and separator widget

This commit is contained in:
Nishi 2025-12-17 22:56:15 +09:00
commit 57a32b56b1
Signed by: nishi
GPG key ID: 27EF69B208EB9343
12 changed files with 191 additions and 10 deletions

View file

@ -0,0 +1,9 @@
#include <Mw/Milsko.h>
#include <libconfig.h>
void module(MwWidget box, config_setting_t* setting) {
MwVaCreateWidget(MwSeparatorClass, "separator", box, 0, 0, 0, 0,
MwNfixedSize, 10,
MwNorientation, MwVERTICAL,
NULL);
}