remove MwLLSetBackground

This commit is contained in:
Nishi 2025-12-07 10:40:40 +09:00
commit 218f8fa9cf
Signed by: nishi
GPG key ID: 27EF69B208EB9343
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);
}