Skip to content
This repository has been archived by the owner on Oct 24, 2018. It is now read-only.

Commit

Permalink
replace deprecated function
Browse files Browse the repository at this point in the history
  • Loading branch information
guinux committed Mar 31, 2018
1 parent 63b5123 commit 093e566
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/manager_window.vala
Expand Up @@ -1934,7 +1934,7 @@ namespace Pamac {
}
}
}
right_click_menu.popup (null, null, null, event.button, event.time);
right_click_menu.popup_at_pointer (event);
return true;
}
}
Expand Down Expand Up @@ -2008,7 +2008,7 @@ namespace Pamac {
upgrade_item.sensitive = true;
}
}
right_click_menu.popup (null, null, null, event.button, event.time);
right_click_menu.popup_at_pointer (event);
return true;
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/transaction.vala
Expand Up @@ -356,7 +356,7 @@ namespace Pamac {
copy_item.activate.connect (() => {term.copy_clipboard ();});
right_click_menu.append (copy_item);
right_click_menu.show_all ();
right_click_menu.popup (null, null, null, event.button, event.time);
right_click_menu.popup_at_pointer (event);
return true;
}
}
Expand Down

0 comments on commit 093e566

Please sign in to comment.