mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 23:06:39 +01:00
Fix rebase errors
This commit is contained in:
parent
d08184f4c1
commit
137623bfd6
4 changed files with 3 additions and 3 deletions
|
@ -55,7 +55,7 @@ dependencies {
|
|||
compile 'de.jensd:fontawesomefx-materialdesignfont:2.0.26-9.1.2'
|
||||
compile 'com.googlecode.jcsv:jcsv:1.4.0'
|
||||
compile 'com.github.sarxos:webcam-capture:0.3.12'
|
||||
|
||||
compile 'com.jfoenix:jfoenix:8.0.7'
|
||||
|
||||
compileOnly 'org.projectlombok:lombok:1.18.2'
|
||||
annotationProcessor 'org.projectlombok:lombok:1.18.2'
|
||||
|
|
|
@ -54,7 +54,7 @@ public class JFXRadioButtonSkinBisqStyle extends RadioButtonSkin {
|
|||
public JFXRadioButtonSkinBisqStyle(JFXRadioButton control) {
|
||||
super(control);
|
||||
|
||||
final double radioRadius = 8;
|
||||
final double radioRadius = 7;
|
||||
radio = new Circle(radioRadius);
|
||||
radio.getStyleClass().setAll("radio");
|
||||
radio.setStrokeWidth(1);
|
||||
|
@ -200,7 +200,7 @@ public class JFXRadioButtonSkinBisqStyle extends RadioButtonSkin {
|
|||
final double labelHeight = Math.min(radioButton.prefHeight(labelWidth), h);
|
||||
final double maxHeight = Math.max(contHeight, labelHeight);
|
||||
final double xOffset = computeXOffset(w, labelWidth + contWidth, radioButton.getAlignment().getHpos()) + x;
|
||||
final double yOffset = computeYOffset(h, maxHeight, radioButton.getAlignment().getVpos()) + x;
|
||||
final double yOffset = computeYOffset(h, maxHeight, radioButton.getAlignment().getVpos()) + x + 5;
|
||||
|
||||
layoutLabelInArea(xOffset + contWidth + padding/3, yOffset, labelWidth, maxHeight, radioButton.getAlignment());
|
||||
((Text) getChildren().get((getChildren().get(0) instanceof Text) ? 0 : 1)).
|
Before Width: | Height: | Size: 171 B After Width: | Height: | Size: 171 B |
Before Width: | Height: | Size: 347 B After Width: | Height: | Size: 347 B |
Loading…
Add table
Reference in a new issue