git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@828 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-29 21:17:15 +00:00
parent 77ec32ef42
commit 77ea00f047
4 changed files with 11 additions and 3 deletions

View File

@@ -490,7 +490,7 @@ void MwVaListApply(MwWidget handle, va_list va) {
}
if(x != MwDEFAULT && y != MwDEFAULT) {
MwLLSetXY(handle->lowlevel, x, y);
if(handle->prop_event){
if(handle->prop_event) {
MwDispatch3(handle, prop_change, MwNx);
MwDispatch3(handle, prop_change, MwNy);
}
@@ -503,7 +503,7 @@ void MwVaListApply(MwWidget handle, va_list va) {
}
if(w != MwDEFAULT && h != MwDEFAULT) {
MwLLSetWH(handle->lowlevel, w, h);
if(handle->prop_event){
if(handle->prop_event) {
MwDispatch3(handle, prop_change, MwNwidth);
MwDispatch3(handle, prop_change, MwNheight);
}