Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin <Poulpator>2020-03-02 18:05:59 +0300
committerJulian Eisel <eiseljulian@gmail.com>2020-03-02 18:07:34 +0300
commit7b8db971d42f6d6b7b1c74959758266ce8c859e0 (patch)
tree1ba8b885eaa68a50cdfd4ca37a229ae46c21e00a /source/blender/editors/space_file/file_intern.h
parent51bce18b6f97dd6c21899e43f4ee4491d0061e92 (diff)
Cleanup: Use generics properties for arrow keys navigation (walk-select)
This patch refactors arrow keys navigation to move properties and enum to generic ED_select_utils.h and property to WM_operator_properties_select_walk_direction() No functional change Reviewed By: Julian Eisel Differential Revision: https://developer.blender.org/D4771
Diffstat (limited to 'source/blender/editors/space_file/file_intern.h')
-rw-r--r--source/blender/editors/space_file/file_intern.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/source/blender/editors/space_file/file_intern.h b/source/blender/editors/space_file/file_intern.h
index 730df53813c..2ded69aef2f 100644
--- a/source/blender/editors/space_file/file_intern.h
+++ b/source/blender/editors/space_file/file_intern.h
@@ -48,13 +48,6 @@ bool file_draw_check_exists(SpaceFile *sfile);
struct wmOperator;
struct wmOperatorType;
-typedef enum WalkSelectDirection {
- FILE_SELECT_WALK_UP,
- FILE_SELECT_WALK_DOWN,
- FILE_SELECT_WALK_LEFT,
- FILE_SELECT_WALK_RIGHT,
-} WalkSelectDirections;
-
void FILE_OT_highlight(struct wmOperatorType *ot);
void FILE_OT_sort_column_ui_context(struct wmOperatorType *ot);
void FILE_OT_select(struct wmOperatorType *ot);