Fixed dropdown controls height in all Panels

This commit is contained in:
Dimitris Panokostas 2018-01-23 21:56:35 +01:00
parent ef440d7988
commit 40d1490e6e
9 changed files with 27 additions and 27 deletions

View file

@ -438,7 +438,7 @@ void InitPanelHD(const struct _ConfigCategory& category)
cmdCDSelect->addActionListener(cdButtonActionListener);
cboCDFile = new gcn::UaeDropDown(&cdfileList);
cboCDFile->setSize(category.panel->getWidth() - 2 * DISTANCE_BORDER, DROPDOWN_HEIGHT);
cboCDFile->setSize(category.panel->getWidth() - 2 * DISTANCE_BORDER, cboCDFile->getHeight());
cboCDFile->setBaseColor(gui_baseCol);
cboCDFile->setBackgroundColor(colTextboxBackground);
cboCDFile->setId("cboCD");