|
|
4b6aa8 |
From 04daea171a1f8a1fef8b6a5dbebbacbb88f4d23b Mon Sep 17 00:00:00 2001
|
|
|
4b6aa8 |
From: =?UTF-8?q?Mat=C4=9Bj=20Kudera?= <matejkudera1@seznam.cz>
|
|
|
4b6aa8 |
Date: Tue, 23 May 2017 14:03:01 +0200
|
|
|
4b6aa8 |
Subject: [PATCH] Removing 'gtk_tree_view_set_rules_hint'
|
|
|
4b6aa8 |
|
|
|
4b6aa8 |
gtk_tree_view_set_rules_hint has been deprecated since version 3.14.
|
|
|
4b6aa8 |
Because it is a hint it is not secessary so we remowed it.
|
|
|
4b6aa8 |
---
|
|
|
4b6aa8 |
src/gtk-helpers/config_dialog.c | 2 --
|
|
|
4b6aa8 |
1 file changed, 2 deletions(-)
|
|
|
4b6aa8 |
|
|
|
4b6aa8 |
diff --git a/src/gtk-helpers/config_dialog.c b/src/gtk-helpers/config_dialog.c
|
|
|
4b6aa8 |
index 1ad440b..14dfe42 100644
|
|
|
4b6aa8 |
--- a/src/gtk-helpers/config_dialog.c
|
|
|
4b6aa8 |
+++ b/src/gtk-helpers/config_dialog.c
|
|
|
4b6aa8 |
@@ -270,8 +270,6 @@ GtkWidget *create_config_tab_content(const char *column_label,
|
|
|
4b6aa8 |
g_object_set(G_OBJECT(renderer), "wrap-width", 440, NULL);
|
|
|
4b6aa8 |
gtk_tree_view_column_set_sort_column_id(column, COLUMN_NAME);
|
|
|
4b6aa8 |
gtk_tree_view_append_column(GTK_TREE_VIEW(tv), column);
|
|
|
4b6aa8 |
- /* "Please draw rows in alternating colors": */
|
|
|
4b6aa8 |
- gtk_tree_view_set_rules_hint(GTK_TREE_VIEW(tv), TRUE);
|
|
|
4b6aa8 |
/* Hide Column Headers because we have only one - 'Events' - rhbz#1055633 */
|
|
|
4b6aa8 |
gtk_tree_view_set_headers_visible(GTK_TREE_VIEW(tv), FALSE);
|
|
|
4b6aa8 |
GtkTreeModel *model = gtk_tree_model_filter_new(GTK_TREE_MODEL(store), NULL);
|
|
|
4b6aa8 |
--
|
|
|
4b6aa8 |
2.21.0
|
|
|
4b6aa8 |
|