Skip to content

Commit c7085bb

Browse files
committed
Button renamed.
1 parent 302c326 commit c7085bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/java/ee/ut/similaritydetector/ui/controllers/ResultsViewController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ private void openCodeView() throws IOException {
147147
newWindow.setMinHeight(600);
148148
newWindow.setScene(codeViewScene);
149149
newWindow.centerOnScreen();
150-
newWindow.setTitle("Source code similarity detector - Similar clusters & pairs - " + analyser.getZipDirectory().getName());
150+
newWindow.setTitle("Source code similarity detector - Code review - " + analyser.getZipDirectory().getName());
151151
// Icon from: https://icons-for-free.com/spy-131964785010048699/ [25.03.2021]
152152
newWindow.getIcons().add(new Image(getClass().getResourceAsStream("/ee/ut/similaritydetector/img/app_icon.png")));
153153

src/main/resources/ee/ut/similaritydetector/fxml/results_view.fxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
</VBox>
7878
<HBox alignment="TOP_CENTER" spacing="50.0" VBox.vgrow="ALWAYS">
7979
<children>
80-
<Button fx:id="viewClustersButton" alignment="CENTER" contentDisplay="CENTER" disable="true" maxHeight="65.0" minHeight="55.0" mnemonicParsing="false" onAction="#viewClusters" prefHeight="60.0" prefWidth="175.0" text="View similar pairs &amp; clusters" textAlignment="CENTER" />
80+
<Button fx:id="viewClustersButton" alignment="CENTER" contentDisplay="CENTER" disable="true" maxHeight="65.0" minHeight="55.0" mnemonicParsing="false" onAction="#viewClusters" prefHeight="60.0" prefWidth="175.0" text="Review suspicious solutions" textAlignment="CENTER" />
8181
<Button fx:id="runNewAnalysisButton" alignment="CENTER" contentDisplay="CENTER" maxHeight="65.0" minHeight="55.0" mnemonicParsing="false" onAction="#runNewAnalysis" prefHeight="60.0" prefWidth="175.0" text="Run new analysis" textAlignment="CENTER" />
8282
</children>
8383
<VBox.margin>

0 commit comments

Comments
 (0)