Skip to content

Commit 4f491e0

Browse files
author
mplieske
committed
changed font for all text elements in ViewLayoutPopup.fxml to Open Sans
1 parent 15f92eb commit 4f491e0

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed
Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22

3+
<?import java.lang.*?>
4+
<?import javafx.scene.control.*?>
5+
<?import javafx.scene.layout.*?>
6+
<?import javafx.scene.text.*?>
37
<?import javafx.scene.control.ListView?>
48
<?import javafx.scene.control.TextField?>
59
<?import javafx.scene.layout.VBox?>
610

7-
<VBox prefWidth="100.0" xmlns="http://javafx.com/javafx/8.0.60" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.doubleslash.keeptime.viewpopup.ViewControllerPopup">
11+
<VBox prefWidth="100.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.doubleslash.keeptime.viewpopup.ViewControllerPopup">
812
<children>
9-
<TextField fx:id="searchTextField" promptText="Search" />
13+
<TextField fx:id="searchTextField" promptText="Search">
14+
<font>
15+
<Font name="Open Sans Regular" size="12.0" />
16+
</font></TextField>
1017
<ListView fx:id="projectListView" prefWidth="100.0" />
1118
</children>
1219
</VBox>

0 commit comments

Comments
 (0)