projects
/
wxWidgets.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03966fc
)
don't recreate combobox with proportion of 1 (instead of initial 0) (#9594)
author
Vadim Zeitlin
<vadim@wxwidgets.org>
Mon, 16 Jun 2008 23:09:55 +0000
(23:09 +0000)
committer
Vadim Zeitlin
<vadim@wxwidgets.org>
Mon, 16 Jun 2008 23:09:55 +0000
(23:09 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54269
c3d73ce0
-8a6f-49c7-b76d-
6d57e0e08775
samples/widgets/combobox.cpp
patch
|
blob
|
blame
|
history
diff --git
a/samples/widgets/combobox.cpp
b/samples/widgets/combobox.cpp
index 6518ddd09f519452cc1ea5c2a241222900647b90..6f004365c2916351885ee13d5b1d87148d84e7ec 100644
(file)
--- a/
samples/widgets/combobox.cpp
+++ b/
samples/widgets/combobox.cpp
@@
-428,7
+428,7
@@
void ComboboxWidgetsPage::CreateCombo()
m_combobox->Append(items[n]);
}
- m_sizerCombo->Add(m_combobox,
1
, wxGROW | wxALL, 5);
+ m_sizerCombo->Add(m_combobox,
0
, wxGROW | wxALL, 5);
m_sizerCombo->Layout();
}