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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-27 15:29:53 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2013-06-27 15:29:53 +0400
commitfcea195baa9943e9e42676b1710d8a5e5b4599aa (patch)
tree57469694d2d35decc2438025d24d55ef018587ab /source/blender/editors/space_graph/graph_buttons.c
parentd665c46a648d04cf1b79734908774a11933f2c42 (diff)
Fix a few DPI/retina scaling issues in the graph editor and movie clip editor.
Patch #35889 by David Jeske.
Diffstat (limited to 'source/blender/editors/space_graph/graph_buttons.c')
-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 f00f5d5dfdd..8f9893e3bce 100644
--- a/source/blender/editors/space_graph/graph_buttons.c
+++ b/source/blender/editors/space_graph/graph_buttons.c
@@ -775,7 +775,7 @@ static void graph_panel_modifiers(const bContext *C, Panel *pa)
* a menu might be nicer but would be tricky as we need some custom filtering
*/
uiDefButO(block, BUT, "GRAPH_OT_fmodifier_add", WM_OP_INVOKE_REGION_WIN, IFACE_("Add Modifier"),
- 10, 0, 150, 20, TIP_("Adds a new F-Curve Modifier for the active F-Curve"));
+ 0.5 * UI_UNIT_X, 0, 7.5 * UI_UNIT_X, UI_UNIT_Y, TIP_("Adds a new F-Curve Modifier for the active F-Curve"));
/* copy/paste (as sub-row)*/
row = uiLayoutRow(row, TRUE);