Allow editing of commit message from UI.

This change adds a small edit icon on the top right
corner of the commit message box on the change screen.

Clicking it lets the user edit the commit message and a
new patch set will be created.

Change-Id: I2c4d4a3ba520d4c12ade4bb3b47a55ce7f1b19df
This commit is contained in:
Gustaf Lundh
2012-11-16 14:59:02 -08:00
committed by Shawn O. Pearce
parent 5367b8bab5
commit be1636e870
13 changed files with 339 additions and 8 deletions

View File

@@ -29,6 +29,7 @@ public class ChangeDetail {
protected AccountInfoCache accounts;
protected boolean allowsAnonymous;
protected boolean canAbandon;
protected boolean canEditCommitMessage;
protected boolean canPublish;
protected boolean canRebase;
protected boolean canRestore;
@@ -77,6 +78,14 @@ public class ChangeDetail {
canAbandon = a;
}
public boolean canEditCommitMessage() {
return canEditCommitMessage;
}
public void setCanEditCommitMessage(final boolean a) {
canEditCommitMessage = a;
}
public boolean canPublish() {
return canPublish;
}