[gitg/vala] Fix negotiate order ids
- From: Jesse van den Kieboom <jessevdk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gitg/vala] Fix negotiate order ids
- Date: Wed, 18 Jul 2012 07:36:09 +0000 (UTC)
commit 5aa2577aa4716992eecb89e142680fc029e6f367
Author: Jesse van den Kieboom <jesse vandenkieboom epfl ch>
Date: Wed Jul 18 09:35:28 2012 +0200
Fix negotiate order ids
plugins/diff/gitg-diff.vala | 2 +-
plugins/files/gitg-files.vala | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/plugins/diff/gitg-diff.vala b/plugins/diff/gitg-diff.vala
index 5cef08e..2fa6f07 100644
--- a/plugins/diff/gitg-diff.vala
+++ b/plugins/diff/gitg-diff.vala
@@ -119,7 +119,7 @@ namespace GitgDiff
public int negotiate_order(GitgExt.UIElement other)
{
// Should appear before the files
- if (other.id == "/org/gnome/gitg/plugins/Files")
+ if (other.id == "/org/gnome/gitg/Panels/Files")
{
return -1;
}
diff --git a/plugins/files/gitg-files.vala b/plugins/files/gitg-files.vala
index 922a141..6068d88 100644
--- a/plugins/files/gitg-files.vala
+++ b/plugins/files/gitg-files.vala
@@ -293,7 +293,7 @@ namespace GitgFiles
public int negotiate_order(GitgExt.UIElement other)
{
// Should appear after the diff
- if (other.id == "/org/gnome/gitg/plugins/Diff")
+ if (other.id == "/org/gnome/gitg/Panels/Diff")
{
return 1;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]