You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: platform-sdk/swirlds-platform-core/src/main/java/com/swirlds/platform/gui/hashgraph/HashgraphPictureOptions.java
+5
Original file line number
Diff line number
Diff line change
@@ -55,6 +55,11 @@ public interface HashgraphPictureOptions {
55
55
*/
56
56
booleanwriteBirthRound();
57
57
58
+
/**
59
+
* @return should branch numbers be written for every branched event (if any)
60
+
*/
61
+
booleanwriteBranches();
62
+
58
63
/**
59
64
* @return should simple colors be used in the picture
Copy file name to clipboardExpand all lines: platform-sdk/swirlds-platform-core/src/main/java/com/swirlds/platform/gui/hashgraph/internal/EventSelector.java
+1-1
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ public void mouseClicked(final MouseEvent me) {
Copy file name to clipboardExpand all lines: platform-sdk/swirlds-platform-core/src/main/java/com/swirlds/platform/gui/hashgraph/internal/HashgraphGuiControls.java
+11-1
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,8 @@ public class HashgraphGuiControls implements HashgraphPictureOptions {
49
49
privatefinalCheckboxlabelGenerationCheckbox;
50
50
/** the birth round number for the event */
51
51
privatefinalCheckboxlabelBirthroundCheckbox;
52
+
/** the branch number for the event */
53
+
privatefinalCheckboxlabelBranchNumberCheckbox;
52
54
/** check to display the latest events available */
53
55
privatefinalCheckboxdisplayLatestEvents;
54
56
@@ -71,6 +73,7 @@ public HashgraphGuiControls(final ItemListener freezeListener) {
Copy file name to clipboardExpand all lines: platform-sdk/swirlds-platform-core/src/main/java/com/swirlds/platform/gui/hashgraph/internal/HashgraphPicture.java
0 commit comments