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:
authorTon Roosendaal <ton@blender.org>2009-06-04 19:19:48 +0400
committerTon Roosendaal <ton@blender.org>2009-06-04 19:19:48 +0400
commit33b0ba4a76b4f772aad6e0cdecb75806a1f092d7 (patch)
tree3d71a8980824ce4413914ff8492d547f8b17e270 /source/blender/editors/space_info
parent59333375b31fe4ba055f875c1d42be10e1611249 (diff)
2.5
Bugfix: Icons were drawing on wrong subpixel positions, distorting badly. Now it's crispy and tasty! Noticed there's a magnifier icon already, using it for the search option.
Diffstat (limited to 'source/blender/editors/space_info')
-rw-r--r--source/blender/editors/space_info/info_header.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_info/info_header.c b/source/blender/editors/space_info/info_header.c
index 09f5640dbf6..c8dd3df8425 100644
--- a/source/blender/editors/space_info/info_header.c
+++ b/source/blender/editors/space_info/info_header.c
@@ -489,7 +489,7 @@ void info_header_buttons(const bContext *C, ARegion *ar)
{
static char search[256]= "";
- uiBut *but= uiDefSearchBut(block, search, 0, ICON_PROP_ON, 256, xco+5, yco, 120, 19, "");
+ uiBut *but= uiDefSearchBut(block, search, 0, ICON_VIEWZOOM, 256, xco+5, yco, 120, 19, "");
uiButSetSearchFunc(but, operator_search_cb, NULL, operator_call_cb);