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:
authorDaniel Dunbar <daniel@zuster.org>2005-08-06 22:51:58 +0400
committerDaniel Dunbar <daniel@zuster.org>2005-08-06 22:51:58 +0400
commit28a1f55ff6cb6fb5ad37a6959899171e25ce537e (patch)
treebc4667acec3fa994b114efd3bf1d4e2ef16b5524 /source/blender/src/resources.c
parent66dc186fb6f6fd4d95b429fba6d31c764000bde0 (diff)
- added copy button to modifier stack UI
- add warning about applying decimation - some more UI tweaks (rounding of modifier pane, make toggles only in header, add object name to try to convey that modifier stack is tied to OB) - bug fix, modifier recalc wasn't done on make link - bug fix, uiBlockEndAlign didn't clear align flags with certain themes, pretty sure this wasn't intended. (TON: PLEASE CHECK)
Diffstat (limited to 'source/blender/src/resources.c')
-rw-r--r--source/blender/src/resources.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/blender/src/resources.c b/source/blender/src/resources.c
index 8ed6beb6bbc..332bac1cc6d 100644
--- a/source/blender/src/resources.c
+++ b/source/blender/src/resources.c
@@ -450,9 +450,9 @@ static void vicon_editmode_hlt_draw(int x, int y, int w, int h, float alpha)
{
int pts[3][2];
- viconutil_set_point(pts[0], x+w/2, y+h-3);
- viconutil_set_point(pts[1], x+3, y+3);
- viconutil_set_point(pts[2], x+w-3, y+3);
+ viconutil_set_point(pts[0], x+w/2, y+h-2);
+ viconutil_set_point(pts[1], x+3, y+4);
+ viconutil_set_point(pts[2], x+w-3, y+4);
glColor4f(0.5, 0.5, 0.5, alpha);
viconutil_draw_tri(pts);
@@ -468,9 +468,9 @@ static void vicon_editmode_dehlt_draw(int x, int y, int w, int h, float alpha)
{
int pts[3][2];
- viconutil_set_point(pts[0], x+w/2, y+h-3);
- viconutil_set_point(pts[1], x+3, y+3);
- viconutil_set_point(pts[2], x+w-3, y+3);
+ viconutil_set_point(pts[0], x+w/2, y+h-2);
+ viconutil_set_point(pts[1], x+3, y+4);
+ viconutil_set_point(pts[2], x+w-3, y+4);
glColor4f(0.0, 0.0, 0.0, 1);
viconutil_draw_lineloop_smooth(pts, 3);