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:
Diffstat (limited to 'source/blender/editors/space_graph/space_graph.c')
-rw-r--r--source/blender/editors/space_graph/space_graph.c19
1 files changed, 11 insertions, 8 deletions
diff --git a/source/blender/editors/space_graph/space_graph.c b/source/blender/editors/space_graph/space_graph.c
index a1e75e2b9b2..791039498e8 100644
--- a/source/blender/editors/space_graph/space_graph.c
+++ b/source/blender/editors/space_graph/space_graph.c
@@ -60,7 +60,7 @@
#include "UI_resources.h"
#include "UI_view2d.h"
-#include "graph_intern.h" // own include
+#include "graph_intern.h" /* own include */
/* ******************** default callbacks for ipo space ***************** */
@@ -163,7 +163,7 @@ static void graph_init(struct wmWindowManager *wm, ScrArea *area)
/* force immediate init of any invalid F-Curve colors */
/* XXX: but, don't do SIPO_TEMP_NEEDCHANSYNC (i.e. channel select state sync)
* as this is run on each region resize; setting this here will cause selection
- * state to be lost on area/region resizing. [#35744]
+ * state to be lost on area/region resizing. T35744.
*/
ED_area_tag_refresh(area);
}
@@ -317,7 +317,7 @@ static void graph_main_region_draw_overlay(const bContext *C, ARegion *region)
ED_time_scrub_draw_current_frame(region, scene, sipo->flag & SIPO_DRAWTIME, draw_vert_line);
/* scrollers */
- // FIXME: args for scrollers depend on the type of data being shown...
+ /* FIXME: args for scrollers depend on the type of data being shown. */
UI_view2d_scrollers_draw(v2d, NULL);
/* scale numbers */
@@ -615,10 +615,13 @@ static void graph_listener(wmWindow *UNUSED(win),
}
break;
- // XXX: restore the case below if not enough updates occur...
- // default:
- // if (wmn->data == ND_KEYS)
- // ED_area_tag_redraw(area);
+#if 0 /* XXX: restore the case below if not enough updates occur... */
+ default: {
+ if (wmn->data == ND_KEYS) {
+ ED_area_tag_redraw(area);
+ }
+ }
+#endif
}
}
@@ -763,7 +766,7 @@ static void graph_refresh(const bContext *C, ScrArea *area)
}
/* region updates? */
- // XXX re-sizing y-extents of tot should go here?
+ /* XXX re-sizing y-extents of tot should go here? */
/* Update the state of the animchannels in response to changes from the data they represent
* NOTE: the temp flag is used to indicate when this needs to be done,