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-02-21 21:33:09 +0300
committerTon Roosendaal <ton@blender.org>2009-02-21 21:33:09 +0300
commit95fffbb57f9a2c8544d33080b5662ad37789d358 (patch)
tree3a6bb6761896f1c65628957492dde697328ace32 /source/blender/editors/interface/interface_panel.c
parentf9ab4481ab6544c4e50ceb1a7e3c8f8cdde0efbd (diff)
2.5
Useful goodies: most buttons for Image window back. Not every button works! But what you can do: - press Nkey to show/hide options - use curves, with realtime updating - image properties panel, load, browsing layers, setting types - paint panel - plus new paint color picker panel! (why it wasn't there in 2.4x is probably obvious, but now it can!) Hrm... radial control should be added here too, and a nice paint size cursor?
Diffstat (limited to 'source/blender/editors/interface/interface_panel.c')
-rw-r--r--source/blender/editors/interface/interface_panel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface_panel.c b/source/blender/editors/interface/interface_panel.c
index 4ee5de85675..6775f6362b8 100644
--- a/source/blender/editors/interface/interface_panel.c
+++ b/source/blender/editors/interface/interface_panel.c
@@ -243,7 +243,7 @@ void uiFreePanels(ListBase *lb)
void uiNewPanelHeight(uiBlock *block, int sizey)
{
- if(sizey<64) sizey= 64;
+ if(sizey<0) sizey= 0;
if(block->panel) {
block->panel->ofsy+= (block->panel->sizey - sizey);