Add Setting to expand diffs inline or open diff view (backend)

Adds a general preference setting for expanding diff views inline from
the change view rather than opening the diff view as a new page. Also
updates documentation that was missed prior for change table columns.

Feature: Issue 5115
Change-Id: I0055961e7b79d74afc3a85de441b53a38f8de4a3
This commit is contained in:
Becky Siegel
2016-12-16 10:30:50 -08:00
parent dd44680231
commit e450a31f98
3 changed files with 27 additions and 1 deletions

View File

@@ -132,6 +132,7 @@ public class GeneralPreferencesInfo {
public DownloadCommand downloadCommand;
public DateFormat dateFormat;
public TimeFormat timeFormat;
public Boolean expandInlineDiffs;
public Boolean highlightAssigneeInChangeTable;
public Boolean relativeDateInChangeTable;
public DiffView diffView;
@@ -196,6 +197,7 @@ public class GeneralPreferencesInfo {
p.downloadCommand = DownloadCommand.CHECKOUT;
p.dateFormat = DateFormat.STD;
p.timeFormat = TimeFormat.HHMM_12;
p.expandInlineDiffs = false;
p.highlightAssigneeInChangeTable = true;
p.relativeDateInChangeTable = false;
p.diffView = DiffView.SIDE_BY_SIDE;