merged group-box change

svn: r74
This commit is contained in:
Matthew Flatt 2005-06-08 15:05:00 +00:00
parent 2cd93d521e
commit 07279e6286
2 changed files with 8 additions and 2 deletions

View File

@ -154,7 +154,10 @@ void wxGroupBox::Refresh(void)
void wxGroupBox::SetPhantomSize(int w, int h) void wxGroupBox::SetPhantomSize(int w, int h)
{ {
phantom_height = h; if (phantom_height != h) {
phantom_height = h;
OnClientAreaDSize(0, 1, 0, 0);
}
} }
//+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

View File

@ -229,7 +229,10 @@ void wxTabChoice::Refresh(void)
void wxTabChoice::SetPhantomSize(int w, int h) void wxTabChoice::SetPhantomSize(int w, int h)
{ {
phantom_height = h; if (phantom_height != h) {
phantom_height = h;
OnClientAreaDSize(0, 1, 0, 0);
}
} }
extern Bool wx_propagate_key; extern Bool wx_propagate_key;