diff options
Diffstat (limited to 'editor/settings_config_dialog.cpp')
| -rw-r--r-- | editor/settings_config_dialog.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/settings_config_dialog.cpp b/editor/settings_config_dialog.cpp index b4643231d7..c9c1f9c3e0 100644 --- a/editor/settings_config_dialog.cpp +++ b/editor/settings_config_dialog.cpp @@ -110,7 +110,7 @@ void EditorSettingsDialog::_filter_shortcuts(const String &p_filter) {  }  void EditorSettingsDialog::_undo_redo_callback(void *p_self, const String &p_name) { -	EditorNode::get_log()->add_message(p_name); +	EditorNode::get_log()->add_message(p_name, EditorLog::MSG_TYPE_EDITOR);  }  void EditorSettingsDialog::_notification(int p_what) { @@ -151,7 +151,7 @@ void EditorSettingsDialog::_unhandled_input(const Ref<InputEvent> &p_event) {  			if (ED_IS_SHORTCUT("editor/undo", p_event)) {  				String action = undo_redo->get_current_action_name();  				if (action != "") -					EditorNode::get_log()->add_message("UNDO: " + action); +					EditorNode::get_log()->add_message("Undo: " + action, EditorLog::MSG_TYPE_EDITOR);  				undo_redo->undo();  				handled = true;  			} @@ -159,7 +159,7 @@ void EditorSettingsDialog::_unhandled_input(const Ref<InputEvent> &p_event) {  				undo_redo->redo();  				String action = undo_redo->get_current_action_name();  				if (action != "") -					EditorNode::get_log()->add_message("REDO: " + action); +					EditorNode::get_log()->add_message("Redo: " + action, EditorLog::MSG_TYPE_EDITOR);  				handled = true;  			}  |