No padding in borderless combobox.

[GB.GTK3]
* NEW: No padding in borderless combobox.
This commit is contained in:
gambas 2020-11-23 21:26:42 +01:00
parent ae5da87640
commit 0caed621e3

View File

@ -389,7 +389,7 @@ void gComboBox::customStyleSheet(GString *css)
if (!_has_border)
{
setStyleSheetNode(css, "");
g_string_append_printf(css, "border:none;box-shadow:none;\n");
g_string_append_printf(css, "border:none;box-shadow:none;padding:0;\n");
if (background() == COLOR_DEFAULT)
g_string_append_printf(css, "background:none;");