diff --git a/data/style.css b/data/style.css index 15875d54..7e3fa81d 100644 --- a/data/style.css +++ b/data/style.css @@ -7,7 +7,8 @@ .key { color: #deddda; background: #464448; - border-width: 0.5px; + border-style: solid; + border-width: 1px; border-color: #5e5c64; border-radius: 2px; } diff --git a/eek/eek-renderer.c b/eek/eek-renderer.c index b51ae9b5..5a32e0d3 100644 --- a/eek/eek-renderer.c +++ b/eek/eek-renderer.c @@ -162,6 +162,10 @@ render_keyboard_surface (EekRenderer *renderer) data.cr, 0, 0, priv->allocation_width, priv->allocation_height); + gtk_render_frame (priv->scontext, + data.cr, + 0, 0, + priv->allocation_width, priv->allocation_height); cairo_save (data.cr); cairo_scale (data.cr, priv->scale, priv->scale); @@ -204,6 +208,8 @@ render_key_outline (EekRenderer *renderer, gtk_render_background (priv->key_context, cr, 0, 0, bounds.width, bounds.height); + gtk_render_frame (priv->key_context, + cr, 0, 0, bounds.width, bounds.height); gtk_style_context_set_state(priv->key_context, GTK_STATE_FLAG_NORMAL); }