Fix file browser new directory prompting for confirmation

This is only needed for the case where it's automatically done when entering a
file path that does not exist, not when pressing the button.
This commit is contained in:
Brecht Van Lommel 2019-09-23 16:44:06 +02:00
parent a168c3d282
commit e2e567e0b4
1 changed files with 6 additions and 2 deletions

View File

@ -368,7 +368,9 @@ class FILEBROWSER_PT_directory_path(Panel):
subrow.operator("file.parent", text="", icon='FILE_PARENT')
subrow.operator("file.refresh", text="", icon='FILE_REFRESH')
row.operator("file.directory_new", icon='NEWFOLDER', text="")
subrow = row.row()
subrow.operator_context = 'EXEC_DEFAULT'
subrow.operator("file.directory_new", icon='NEWFOLDER', text="")
subrow = row.row()
subrow.template_file_select_path(params)
@ -464,7 +466,9 @@ class FILEBROWSER_MT_context_menu(Menu):
layout.operator("file.rename", text="Rename")
# layout.operator("file.delete")
layout.operator("file.directory_new", text="New Folder")
sub = layout.row()
sub.operator_context = 'EXEC_DEFAULT'
sub.operator("file.directory_new", text="New Folder")
layout.operator("file.bookmark_add", text="Add Bookmark")
layout.separator()