[gtk+/wip/baedert/drawing: 9/241] Widget: Disable css box drawing for GtkWindow
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/baedert/drawing: 9/241] Widget: Disable css box drawing for GtkWindow
- Date: Thu, 15 Jun 2017 10:48:22 +0000 (UTC)
commit 4985d16b696f89cd8f72f88c5ce4c9b050b07573
Author: Timm Bäder <mail baedert org>
Date: Wed May 3 10:17:58 2017 +0200
Widget: Disable css box drawing for GtkWindow
Until we know how we solve that.
gtk/gtkwidget.c | 18 ++++++++++--------
1 files changed, 10 insertions(+), 8 deletions(-)
---
diff --git a/gtk/gtkwidget.c b/gtk/gtkwidget.c
index bda6ec8..2e5203f 100644
--- a/gtk/gtkwidget.c
+++ b/gtk/gtkwidget.c
@@ -15365,17 +15365,19 @@ gtk_widget_snapshot (GtkWidget *widget,
_gtk_widget_get_allocation (widget, &allocation);
- gtk_snapshot_offset (snapshot, margin.left, margin.top);
- gtk_css_style_snapshot_background (style,
+ if (!GTK_IS_WINDOW (widget))
+ {
+ gtk_snapshot_offset (snapshot, margin.left, margin.top);
+ gtk_css_style_snapshot_background (style,
+ snapshot,
+ allocation.width - margin.left - margin.right,
+ allocation.height - margin.top - margin.bottom);
+ gtk_css_style_snapshot_border (style,
snapshot,
allocation.width - margin.left - margin.right,
allocation.height - margin.top - margin.bottom);
- gtk_css_style_snapshot_border (style,
- snapshot,
- allocation.width - margin.left - margin.right,
- allocation.height - margin.top - margin.bottom);
- gtk_snapshot_offset (snapshot, - margin.left, - margin.top);
-
+ gtk_snapshot_offset (snapshot, - margin.left, - margin.top);
+ }
if (mode == RENDER_DRAW)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]