remove MwLLSetBackground

This commit is contained in:
NishiOwO
2025-12-07 10:40:40 +09:00
parent 71cb96b06e
commit 218f8fa9cf
6 changed files with 0 additions and 20 deletions

View File

@@ -390,11 +390,6 @@ void MwSetText(MwWidget handle, const char* key, const char* value) {
}
}
if(handle->prop_event) MwDispatch3(handle, prop_change, key);
if(value != NULL && strcmp(key, MwNbackground) == 0) {
MwLLColor c = MwParseColor(handle, value);
MwLLSetBackground(handle->lowlevel, c);
MwLLFreeColor(c);
}
if(strcmp(key, MwNbackground) == 0 || strcmp(key, MwNforeground) == 0 || strcmp(key, MwNsubBackground) == 0 || strcmp(key, MwNsubForeground) == 0) {
MwForceRender(handle);
}