Files
milsko/src/default.c
NishiOwO 453fb8702d fix things
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@490 b9cfdab3-6d41-4d17-bbe4-086880011989
2025-10-24 17:31:05 +00:00

14 lines
249 B
C

/* $Id$ */
#include <Mw/Milsko.h>
const char* MwDefaultBackground = "#ddd";
const char* MwDefaultForeground = "#000";
int MwGetDefaultBorderWidth(MwWidget handle) {
if(MwGetInteger(handle, MwNmodernLook)) {
return 1;
} else {
return 2;
}
}