summarylogtreecommitdiffstats
path: root/2017.06.patch
diff options
context:
space:
mode:
authorJoaquin2018-08-31 05:45:05 -0500
committerJoaquin2018-08-31 05:45:05 -0500
commita83c986e0c51d0920b4c4672ccd74337fd9480d4 (patch)
tree35b4bd7c5650c4a09f1aa431b32a509dae8fe987 /2017.06.patch
parentdb427cee345e6165eb80d9ea1b71b95847f3da92 (diff)
downloadaur-a83c986e0c51d0920b4c4672ccd74337fd9480d4.tar.gz
upgpkg: font-manager 0.7.3.1-1
upstream release Add Font-Manager
Diffstat (limited to '2017.06.patch')
-rw-r--r--2017.06.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/2017.06.patch b/2017.06.patch
deleted file mode 100644
index 15444aaa6e5a..000000000000
--- a/2017.06.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- lib/UX/Models/CollectionModel.vala 2017-06-29 16:17:28.997795458 +0800
-+++ lib/UX/Models/CollectionModel.vala 2017-06-29 16:17:22.227415589 +0800
-@@ -104,7 +104,7 @@
- return sorted;
- }
-
-- void insert_children (Gee.ArrayList <Filter> groups, Gtk.TreeIter parent) {
-+ void insert_children (Gee.ArrayList <Collection> groups, Gtk.TreeIter parent) {
- var sorted = sort_groups(groups);
- foreach(var child in sorted) {
- Gtk.TreeIter _iter;
---- src/font-manager/State.vala 2017-06-29 16:42:40.268868810 +0800
-+++ src/font-manager/State.vala 2017-06-29 16:42:55.579554795 +0800
-@@ -25,8 +25,8 @@
-
- public class State : Object {
-
-- internal static const int DEFAULT_WIDTH = 700;
-- internal static const int DEFAULT_HEIGHT = 480;
-+ internal const int DEFAULT_WIDTH = 700;
-+ internal const int DEFAULT_HEIGHT = 480;
-
- public Settings? settings { get; set; default = null; }
- public weak MainWindow? main_window { get; set; default = null; }
---- src/font-manager/Compare.vala 2017-06-29 16:43:14.080385035 +0800
-+++ src/font-manager/Compare.vala 2017-06-29 16:43:31.427831486 +0800
-@@ -280,9 +280,17 @@
- * the iter was always being set to null after calling remove.
- */
- string iter_as_string = store.get_string_from_iter(iter);
-+#if VALA_0_36
-+ store.remove(ref iter);
-+#else
- store.remove(iter);
-+#endif
- store.get_iter_from_string(out iter, iter_as_string);
-+#if VALA_0_36
-+ bool still_valid = store.remove(ref iter);
-+#else
- bool still_valid = store.remove(iter);
-+#endif
- /* Set the cursor to a remaining row instead of having the cursor disappear.
- * This allows for easy deletion of multiple previews by hitting the remove
- * button repeatedly.