From 28adc03cceddce342ce496b60304a029a9f509c9 Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Wed, 19 Jan 2011 11:34:10 -0500 Subject: [PATCH] StIcon: round icon size to an integer Instead of converting a CSS-specified length to an integer by truncation, round. This means that sizes specified by converting a pixel value into non-px terms will work reliably instead of potentially being off-by-one. --- src/st/st-icon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/st/st-icon.c b/src/st/st-icon.c index 6101107f1..78519c483 100644 --- a/src/st/st-icon.c +++ b/src/st/st-icon.c @@ -279,7 +279,7 @@ st_icon_style_changed (StWidget *widget) StThemeNode *theme_node = st_widget_get_theme_node (widget); StIconPrivate *priv = self->priv; - priv->theme_icon_size = st_theme_node_get_length (theme_node, "icon-size"); + priv->theme_icon_size = (int)(0.5 + st_theme_node_get_length (theme_node, "icon-size")); st_icon_update_icon_size (self); st_icon_update (self); }