Use CSS for Retina ready images

This commit is contained in:
Manfred Karrer 2014-09-16 02:09:32 +02:00
parent 908874fd92
commit 97facb6bbf
8 changed files with 110 additions and 102 deletions

View file

@ -119,7 +119,8 @@ public class BitSquare extends Application {
final Parent view = loader.load();
final Scene scene = new Scene(view, 1000, 750);
scene.getStylesheets().setAll(getClass().getResource("/io/bitsquare/gui/bitsquare.css").toExternalForm());
scene.getStylesheets().setAll(getClass().getResource("/io/bitsquare/gui/bitsquare.css").toExternalForm(),
getClass().getResource("/io/bitsquare/gui/images.css").toExternalForm());
setupCloseHandlers(primaryStage, scene);