[gitg] Use symbolic icons in the sidebar
- From: Yosef Or Boczko <yoseforb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gitg] Use symbolic icons in the sidebar
- Date: Sat, 4 Jan 2014 23:45:02 +0000 (UTC)
commit 4b45b7bd2319a8bacbfda9f81937c7a5134d7e88
Author: Yosef Or Boczko <yoseforb gmail com>
Date: Sun Jan 5 01:33:35 2014 +0200
Use symbolic icons in the sidebar
gitg/commit/gitg-commit.vala | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gitg/commit/gitg-commit.vala b/gitg/commit/gitg-commit.vala
index 21598a5..b404ce9 100644
--- a/gitg/commit/gitg-commit.vala
+++ b/gitg/commit/gitg-commit.vala
@@ -87,7 +87,7 @@ namespace GitgCommit
if ((status & (Ggit.StatusFlags.INDEX_NEW |
Ggit.StatusFlags.WORKING_TREE_NEW)) != 0)
{
- return "document-new";
+ return "list-add-symbolic";
}
else if ((status & (Ggit.StatusFlags.INDEX_MODIFIED |
Ggit.StatusFlags.INDEX_RENAMED |
@@ -95,12 +95,12 @@ namespace GitgCommit
Ggit.StatusFlags.WORKING_TREE_MODIFIED |
Ggit.StatusFlags.WORKING_TREE_TYPECHANGE)) != 0)
{
- return "gtk-edit";
+ return "text-editor-symbolic";
}
else if ((status & (Ggit.StatusFlags.INDEX_DELETED |
Ggit.StatusFlags.WORKING_TREE_DELETED)) != 0)
{
- return "edit-delete";
+ return "edit-delete-symbolic";
}
return null;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]