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:
authorCampbell Barton <ideasman42@gmail.com>2013-06-05 00:26:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-06-05 00:26:58 +0400
commitc89c716e84fd519b0300b52ab5cd75c70e258704 (patch)
treec77e5a5f442d312489a6b26a205a60b4c9fea5f2 /source/blender/editors/include/UI_view2d.h
parentc630435b3cb95a476b528f2c0f9f70c846a6c00b (diff)
fix [#35613] Dopesheet, Graph Editor Trouble Selecting Channels
Diffstat (limited to 'source/blender/editors/include/UI_view2d.h')
-rw-r--r--source/blender/editors/include/UI_view2d.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/include/UI_view2d.h b/source/blender/editors/include/UI_view2d.h
index 3b364f5674b..e46334b06e7 100644
--- a/source/blender/editors/include/UI_view2d.h
+++ b/source/blender/editors/include/UI_view2d.h
@@ -178,13 +178,13 @@ void UI_view2d_scrollers_draw(const struct bContext *C, struct View2D *v2d, View
void UI_view2d_scrollers_free(View2DScrollers *scrollers);
/* list view tools */
-void UI_view2d_listview_cell_to_view(struct View2D *v2d, short columnwidth, short rowheight,
+void UI_view2d_listview_cell_to_view(struct View2D *v2d, float columnwidth, float rowheight,
float startx, float starty, int column, int row,
struct rctf *rect);
-void UI_view2d_listview_view_to_cell(struct View2D *v2d, short columnwidth, short rowheight,
+void UI_view2d_listview_view_to_cell(struct View2D *v2d, float columnwidth, float rowheight,
float startx, float starty, float viewx, float viewy,
int *column, int *row);
-void UI_view2d_listview_visible_cells(struct View2D *v2d, short columnwidth, short rowheight,
+void UI_view2d_listview_visible_cells(struct View2D *v2d, float columnwidth, float rowheight,
float startx, float starty, int *column_min, int *column_max,
int *row_min, int *row_max);