remove unused import and fixed cast/audit buttons width

android-scanner
Laura Radaelli 2017-01-25 22:10:09 +02:00
parent 17d7d5eca4
commit 97fbfcecaf
2 changed files with 2 additions and 3 deletions

View File

@ -7,7 +7,7 @@
<Pane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1" fx:controller="meerkat.voting.gui.controllersFX.CastOrAuditController">
<children>
<Text fx:id="question" layoutX="84.0" layoutY="89.0" strokeType="OUTSIDE" strokeWidth="0.0" text="Cast or Audit?" textAlignment="CENTER" wrappingWidth="431.3046875" />
<Button layoutX="150.0" layoutY="200.0" mnemonicParsing="false" onMousePressed="#cast" prefHeight="50.0" prefWidth="90.0" text="Cast" />
<Button layoutX="360.0" layoutY="200.0" mnemonicParsing="false" onMousePressed="#audit" prefHeight="50.0" prefWidth="90.0" text="Audit" />
<Button layoutX="100.0" layoutY="200.0" mnemonicParsing="false" onMousePressed="#cast" prefHeight="50.0" prefWidth="140.0" text="Cast" />
<Button layoutX="360.0" layoutY="200.0" mnemonicParsing="false" onMousePressed="#audit" prefHeight="50.0" prefWidth="140.0" text="Audit" />
</children>
</Pane>

View File

@ -1,7 +1,6 @@
package meerkat.voting.output;
import com.google.common.util.concurrent.FutureCallback;
import com.google.zxing.WriterException;
import meerkat.protobuf.Voting.BallotSecrets;
import meerkat.protobuf.Voting.PlaintextBallot;
import meerkat.protobuf.Voting.SignedEncryptedBallot;