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:
authorJoshua Leung <aligorith@gmail.com>2010-01-05 15:12:26 +0300
committerJoshua Leung <aligorith@gmail.com>2010-01-05 15:12:26 +0300
commitb6598ed71053647d74935d74762e5e4e6e15eb27 (patch)
tree31f9a89d1509a5ff75e62471b95a4783b61cdbb2
parent05cddaa2806f22964821965fb7ab2b95b7fb5bb1 (diff)
Quick fix for layout of Transform Channel var type, since on smaller regions, the widget sizes were too small to be useful.
-rw-r--r--source/blender/editors/space_graph/graph_buttons.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_graph/graph_buttons.c b/source/blender/editors/space_graph/graph_buttons.c
index c7c58689a5f..a866ebd75e2 100644
--- a/source/blender/editors/space_graph/graph_buttons.c
+++ b/source/blender/editors/space_graph/graph_buttons.c
@@ -430,7 +430,7 @@ static void graph_panel_driverVar__transChan(const bContext *C, uiLayout *layout
}
row= uiLayoutRow(layout, 1);
- uiItemR(row, NULL, 0, &dtar_ptr, "transform_type", 0);
+ uiItemR(row, "", 0, &dtar_ptr, "transform_type", 0);
uiItemR(row, NULL, 0, &dtar_ptr, "use_local_space_transforms", 0);
}