Skip to content

Commit

Permalink
Organize resources
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashuh committed Nov 10, 2023
1 parent 33e2bab commit 2b86b2f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,52 +13,52 @@
<fx:root type="StackPane" xmlns="http://javafx.com/javafx/17.0.2-ea" xmlns:fx="http://javafx.com/fxml/1">
<VBox>
<ToolBar style="-fx-spacing: 4; -fx-padding: 0;">
<Button fx:id="addButton" mnemonicParsing="false" stylesheets="@../../../presentation/view/button.css">
<Button fx:id="addButton" mnemonicParsing="false" stylesheets="@../../../common/presentation/button.css">
<tooltip>
<Tooltip text="Add Torrent" textAlignment="CENTER"/>
</tooltip>
<graphic>
<ImageView fitHeight="28.0" fitWidth="28.0" pickOnBounds="true" preserveRatio="true">
<Image url="@../../../presentation/view/outline_add_black_48dp.png"/>
<Image url="@../../../common/presentation/outline_add_black_48dp.png"/>
</ImageView>
</graphic>
</Button>
<Button fx:id="addUrlButton" mnemonicParsing="false" stylesheets="@../../../presentation/view/button.css">
<Button fx:id="addUrlButton" mnemonicParsing="false" stylesheets="@../../../common/presentation/button.css">
<graphic>
<ImageView fitHeight="28.0" fitWidth="28.0" pickOnBounds="true" preserveRatio="true">
<Image url="@../../../presentation/view/outline_link_black_48dp.png"/>
<Image url="@../../../common/presentation/outline_link_black_48dp.png"/>
</ImageView>
</graphic>
</Button>
<Separator orientation="VERTICAL"/>
<Button fx:id="createFileButton" mnemonicParsing="false"
stylesheets="@../../../presentation/view/button.css">
stylesheets="@../../../common/presentation/button.css">
<graphic>
<ImageView fitHeight="28.0" fitWidth="28.0" pickOnBounds="true" preserveRatio="true">
<Image url="@../../../presentation/view/outline_insert_drive_file_black_48dp.png"/>
<Image url="@../../../common/presentation/outline_insert_drive_file_black_48dp.png"/>
</ImageView>
</graphic>
</Button>
<Separator orientation="VERTICAL"/>
<Button fx:id="deleteButton" mnemonicParsing="false" stylesheets="@../../../presentation/view/button.css">
<Button fx:id="deleteButton" mnemonicParsing="false" stylesheets="@../../../common/presentation/button.css">
<graphic>
<ImageView fitHeight="28.0" fitWidth="28.0" pickOnBounds="true" preserveRatio="true">
<Image url="@../../../presentation/view/outline_delete_black_48dp.png"/>
<Image url="@../../../common/presentation/outline_delete_black_48dp.png"/>
</ImageView>
</graphic>
</Button>
<Separator orientation="VERTICAL"/>
<Button fx:id="startButton" mnemonicParsing="false" stylesheets="@../../../presentation/view/button.css">
<Button fx:id="startButton" mnemonicParsing="false" stylesheets="@../../../common/presentation/button.css">
<graphic>
<ImageView fitHeight="28.0" fitWidth="28.0" pickOnBounds="true" preserveRatio="true">
<Image url="@../../../presentation/view/outline_download_black_48dp.png"/>
<Image url="@../../../common/presentation/outline_download_black_48dp.png"/>
</ImageView>
</graphic>
</Button>
<Button fx:id="stopButton" mnemonicParsing="false" stylesheets="@../../../presentation/view/button.css">
<Button fx:id="stopButton" mnemonicParsing="false" stylesheets="@../../../common/presentation/button.css">
<graphic>
<ImageView fitHeight="28.0" fitWidth="28.0" pickOnBounds="true" preserveRatio="true">
<Image url="@../../../presentation/view/outline_stop_black_48dp.png"/>
<Image url="@../../../common/presentation/outline_stop_black_48dp.png"/>
</ImageView>
</graphic>
</Button>
Expand Down

0 comments on commit 2b86b2f

Please sign in to comment.