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>2008-12-10 20:58:18 +0300
committerTon Roosendaal <ton@blender.org>2008-12-10 20:58:18 +0300
commit64f9c67ca85a56fbc0a59b5c3a72c7f68c968445 (patch)
tree509765f38a3a785609f82b500a22c3af20c47ab8 /source/blender/editors/space_time/space_time.c
parentacce05c7e40785d3b89aa69a61b4b4a91dedc0b4 (diff)
2.5
- Brought back (most of) buttons in TimeLine window. They don't work yet though! Waiting for Brecht to commit callbacks for menus and ui-blocks - Area headers hilite again when mouse is inside.
Diffstat (limited to 'source/blender/editors/space_time/space_time.c')
-rw-r--r--source/blender/editors/space_time/space_time.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/source/blender/editors/space_time/space_time.c b/source/blender/editors/space_time/space_time.c
index a8fc955c485..78afe75d013 100644
--- a/source/blender/editors/space_time/space_time.c
+++ b/source/blender/editors/space_time/space_time.c
@@ -43,6 +43,7 @@
#include "ED_area.h"
#include "ED_screen.h"
+#include "ED_util.h"
#include "WM_api.h"
#include "WM_types.h"
@@ -126,9 +127,6 @@ static void time_main_area_draw(const bContext *C, ARegion *ar)
float col[3];
int unit;
- /* XXX can be removed */
- UI_view2d_size_update(v2d, ar->winx, ar->winy);
-
/* clear and setup matrix */
UI_GetThemeColor3fv(TH_BACK, col);
glClearColor(col[0], col[1], col[2], 0.0);
@@ -168,17 +166,20 @@ static void time_main_area_listener(ARegion *ar, wmNotifier *wmn)
/* ************************ header time area region *********************** */
-
static void time_header_area_draw(const bContext *C, ARegion *ar)
{
float col[3];
/* clear */
- UI_GetThemeColor3fv(TH_HEADER, col);
+ if(ED_screen_area_active(C))
+ UI_GetThemeColor3fv(TH_HEADER, col);
+ else
+ UI_GetThemeColor3fv(TH_HEADERDESEL, col);
+
glClearColor(col[0], col[1], col[2], 0.0);
glClear(GL_COLOR_BUFFER_BIT);
- uiTestRegion(C);
+ time_header_buttons(C, ar);
}
static void time_header_area_free(ARegion *ar)