mirror of
https://github.com/godotengine/godot.git
synced 2024-11-14 08:03:05 +00:00
Merge pull request #10820 from toger5/imoporter_dock_update_label
fixed update import label in importer dock
This commit is contained in:
commit
8cb5036b9a
@ -351,6 +351,15 @@ void ImportDock::_reimport() {
|
||||
EditorFileSystem::get_singleton()->emit_signal("filesystem_changed"); //it changed, so force emitting the signal
|
||||
}
|
||||
|
||||
void ImportDock::_notification(int p_what) {
|
||||
switch (p_what) {
|
||||
|
||||
case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
|
||||
|
||||
imported->add_style_override("normal", get_stylebox("normal", "LineEdit"));
|
||||
} break;
|
||||
}
|
||||
}
|
||||
void ImportDock::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("_reimport"), &ImportDock::_reimport);
|
||||
|
@ -65,6 +65,7 @@ class ImportDock : public VBoxContainer {
|
||||
|
||||
protected:
|
||||
static void _bind_methods();
|
||||
void _notification(int p_what);
|
||||
|
||||
public:
|
||||
void set_edit_path(const String &p_path);
|
||||
|
Loading…
Reference in New Issue
Block a user