aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--create-patch.sh4
2 files changed, 3 insertions, 4 deletions
diff --git a/README.md b/README.md
index fa9b3c4eaf44..b565ae3ab8b0 100644
--- a/README.md
+++ b/README.md
@@ -32,6 +32,7 @@ Icons
---
* Some of GTK stock icons on buttons are restored. You can see it in GTK internal dialogs and in some applications.
+* Colorized icons instead of symbolic icons are used in file chooser dialog.
Others
---
@@ -48,11 +49,9 @@ Others
In future
---
-* File chooser: less "gnomish" appearance, like in GTK2.
* File chooser and color chooser: use classic menu instead of popovers as context menus.
* Message dialogs: restore classic appearance like in GTK2.
* Context menus: restore icons in some places.
-* Dialogs: use standard icons instead of symbolic icons in some places.
Credits
---
diff --git a/create-patch.sh b/create-patch.sh
index 428bd8ac0d44..50cd5cfab39a 100644
--- a/create-patch.sh
+++ b/create-patch.sh
@@ -9,7 +9,7 @@
if [[ -d ./org/gtk ]] && [[ -d ./mod/gtk ]] && [[ $1 ]]; then
# Save.
- diff -U 25 -r -Z -B ./org/gtk ./mod/gtk > "$1.patch"
+ diff -U 10 -r -Z -B ./org/gtk ./mod/gtk > "$1.patch"
# Preview.
- reset; diff --color=always -U 25 -r -Z -B ./org/gtk ./mod/gtk
+ reset; diff --color=always -U 10 -r -Z -B ./org/gtk ./mod/gtk
fi