Skip to content

Commit

Permalink
Fix Code Window Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Tishya Khanna committed Nov 10, 2019
1 parent c230d20 commit 775ab00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/main/java/seedu/address/ui/CodeWindow.java
Expand Up @@ -16,10 +16,10 @@
public class CodeWindow extends UiPart<Stage> {

public static final String GITHUB_URL = "https://github.com/AY1920S1-CS2103T-T17-2/main";
public static final String SOURCECODE_MESSAGE = "Refer to the user guide: " + GITHUB_URL;
public static final String SOURCECODE_MESSAGE = "Refer to our Github repository: " + GITHUB_URL;

private static final Logger logger = LogsCenter.getLogger(CodeWindow.class);
private static final String FXML = "HelpWindow.fxml";
private static final String FXML = "CodeWindow.fxml";

@FXML
private Button copyButton;
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/view/CodeWindow.fxml
Expand Up @@ -8,9 +8,9 @@
<?import javafx.scene.layout.HBox?>
<?import javafx.stage.Stage?>

<fx:root resizable="false" title="Help" type="javafx.stage.Stage" xmlns="http://javafx.com/javafx/11" xmlns:fx="http://javafx.com/fxml/1">
<fx:root resizable="false" title="Code" type="javafx.stage.Stage" xmlns="http://javafx.com/javafx/11" xmlns:fx="http://javafx.com/fxml/1">
<icons>
<Image url="@/images/help_icon.png" />
<Image url="@/images/info_icon.png" />
</icons>
<scene>
<Scene>
Expand Down

0 comments on commit 775ab00

Please sign in to comment.