##// END OF EJS Templates
crecord: remove toggleamend...
Jordi Gutiérrez Hermoso -
r44340:51bfd056 default
parent child Browse files
Show More
@@ -1767,32 +1767,6 b' are you sure you want to review/edit and'
1767 else:
1767 else:
1768 return False
1768 return False
1769
1769
1770 def toggleamend(self, opts, test):
1771 """Toggle the amend flag.
1772
1773 When the amend flag is set, a commit will modify the most recently
1774 committed changeset, instead of creating a new changeset. Otherwise, a
1775 new changeset will be created (the normal commit behavior).
1776 """
1777
1778 if opts.get(b'amend') is None:
1779 opts[b'amend'] = True
1780 msg = _(
1781 b"Amend option is turned on -- committing the currently "
1782 b"selected changes will not create a new changeset, but "
1783 b"instead update the most recently committed changeset.\n\n"
1784 b"Press any key to continue."
1785 )
1786 elif opts.get(b'amend') is True:
1787 opts[b'amend'] = None
1788 msg = _(
1789 b"Amend option is turned off -- committing the currently "
1790 b"selected changes will create a new changeset.\n\n"
1791 b"Press any key to continue."
1792 )
1793 if not test:
1794 self.confirmationwindow(msg)
1795
1796 def recenterdisplayedarea(self):
1770 def recenterdisplayedarea(self):
1797 """
1771 """
1798 once we scrolled with pg up pg down we can be pointing outside of the
1772 once we scrolled with pg up pg down we can be pointing outside of the
General Comments 0
You need to be logged in to leave comments. Login now