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>2003-07-07 20:12:31 +0400
committerTon Roosendaal <ton@blender.org>2003-07-07 20:12:31 +0400
commitc5cc6a28a40643ac8725b04413ed42e0d75511d0 (patch)
tree23cf57b1457e6c5db66a7fb129c4c249e2462a6d /source/blender/bpython/intern
parentb4b10dfff879126e47016318cf9eaa9bc2e1d59c (diff)
- old python: removed reference to UIfrontbuf, just to get it compiling
for those who dont have EXPYTHON defined
Diffstat (limited to 'source/blender/bpython/intern')
-rw-r--r--source/blender/bpython/intern/opy_draw.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/bpython/intern/opy_draw.c b/source/blender/bpython/intern/opy_draw.c
index 36e3382f88f..d9653409724 100644
--- a/source/blender/bpython/intern/opy_draw.c
+++ b/source/blender/bpython/intern/opy_draw.c
@@ -528,9 +528,9 @@ static void py_slider_update(void *butv, void *data2_unused)
g_window_redrawn = 0;
curarea->win_swap= WIN_BACK_OK;
- UIfrontbuf = 1;
+ //UIfrontbuf = 1;
spacetext_do_pywin_buttons(curarea->spacedata.first, uiButGetRetVal(but));
- UIfrontbuf = 0;
+ //UIfrontbuf = 0;
if (!g_window_redrawn) /* if Redraw already called */
Windowmodule_Redraw(0, Py_BuildValue("(i)", SPACE_VIEW3D));