You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-23 15:16:17 +00:00
Convert _notification methods to switch - Chunk C
This commit is contained in:
@@ -94,8 +94,10 @@ Ref<Resource> EditorResourceConversionPlugin::convert(const Ref<Resource> &p_res
|
||||
}
|
||||
|
||||
void CustomPropertyEditor::_notification(int p_what) {
|
||||
if (p_what == NOTIFICATION_WM_CLOSE_REQUEST) {
|
||||
hide();
|
||||
switch (p_what) {
|
||||
case NOTIFICATION_WM_CLOSE_REQUEST: {
|
||||
hide();
|
||||
} break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user