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:
authorIan Thompson <quornian@googlemail.com>2008-08-11 15:10:16 +0400
committerIan Thompson <quornian@googlemail.com>2008-08-11 15:10:16 +0400
commitd90d413421a39e6c5b96fbe483090a13bc9a4569 (patch)
tree308abe4066ec06da5f9e53845cffd248cddbbdf3 /source/blender/blenkernel/BKE_suggestions.h
parenta5d955632f40f4a1abee4928c5068968b35a757e (diff)
Suggestion list scrolling and selection made independent for easier use. Selections no longer move away from the cursor.
Diffstat (limited to 'source/blender/blenkernel/BKE_suggestions.h')
-rw-r--r--source/blender/blenkernel/BKE_suggestions.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_suggestions.h b/source/blender/blenkernel/BKE_suggestions.h
index 41a87aaa05e..d58b8f58bf5 100644
--- a/source/blender/blenkernel/BKE_suggestions.h
+++ b/source/blender/blenkernel/BKE_suggestions.h
@@ -60,6 +60,7 @@ typedef struct SuggList {
SuggItem *first, *last;
SuggItem *firstmatch, *lastmatch;
SuggItem *selected;
+ int top;
} SuggList;
/* Free all text tool memory */
@@ -78,6 +79,7 @@ SuggItem *texttool_suggest_first();
SuggItem *texttool_suggest_last();
void texttool_suggest_select(SuggItem *sel);
SuggItem *texttool_suggest_selected();
+int *texttool_suggest_top();
/* Documentation */
void texttool_docs_show(const char *docs);