Fix negotiate order ids

This commit is contained in:
Jesse van den Kieboom 2012-07-18 09:35:28 +02:00
parent 7d7bc6b170
commit 5aa2577aa4
2 changed files with 2 additions and 2 deletions

View file

@ -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;
}

View file

@ -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;
}