Skip to content

Commit 1798439

Browse files
rebase
1 parent c596cb1 commit 1798439

File tree

3 files changed

+4
-24
lines changed

3 files changed

+4
-24
lines changed

src/main/kotlin/solve/importer/view/ControlPanel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ import solve.importer.model.FrameAfterPartialParsing
1919
import solve.main.MainController
2020
import solve.main.MainView
2121
import solve.project.controller.ProjectController
22-
import solve.styles.ControlButtonsSpacing
2322
import solve.styles.Style
23+
import solve.styles.Style.ControlButtonsSpacing
2424
import solve.utils.createAlertForError
2525
import solve.utils.loadResourcesImage
2626
import solve.utils.materialfx.ControlButtonWidth

src/main/kotlin/solve/sidepanel/tabs/SidePanelTabsView.kt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,10 @@ open class SidePanelTabsView : View() {
4949
styleClass.add(tab.name.lowercase())
5050
contentDisplay = ContentDisplay.TOP
5151
style =
52-
<<<<<<< HEAD
53-
<<<<<<< HEAD
54-
"-fx-font-family: ${Style.font}; -fx-font-weight:700; -fx-font-size: ${Style.buttonFontSize}; -fx-background-radius: 36"
55-
=======
56-
"-fx-font-family: ${Style.font}; -fx-font-weight:700;" +
57-
" -fx-font-size: ${Style.buttonFontSize}; -fx-background-radius: 36"
58-
=======
5952
"-fx-font-family: ${Style.Font}; -fx-font-weight:700;" +
6053
" -fx-font-size: ${Style.ButtonFontSize}; -fx-background-radius: 36"
61-
>>>>>>> 9318fe2 (Update filter settings dialog design and add a logic)
62-
6354
isFocusTraversable = false
6455
tooltip(tab.tooltip)
65-
>>>>>>> 020c720 (Tootips shortcuts)
6656
setPrefSize(72.0, 72.0)
6757
usePrefSize = true
6858

src/main/kotlin/solve/styles/Style.kt

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -59,20 +59,10 @@ object Style {
5959
"-fx-font-family: $Font; -fx-font-weight:700; -fx-font-size: $ButtonFontSize; " +
6060
"-fx-text-fill: $PrimaryColorLight; -fx-background-radius: 36"
6161

62-
fun circleForRipple(button: MFXButton) = Circle(button.layoutX + 36.0, button.layoutY + 36.0, 35.0)
63-
64-
<<<<<<< HEAD
65-
fun circleForRipple(button: ToggleButton) = Circle(button.layoutX + 36.0, button.layoutY + 36.0,35.0)
66-
<<<<<<< HEAD
67-
}
68-
=======
69-
}
70-
>>>>>>> 0ab1432 (removed unused)
71-
=======
72-
fun circleForRipple(button: ToggleButton) = Circle(button.layoutX + 36.0, button.layoutY + 36.0, 35.0)
62+
const val ControlButtonsSpacing = 10.0
7363

7464
const val HeaderFontSize = "20px"
65+
fun circleForRipple(button: MFXButton) = Circle(button.layoutX + 36.0, button.layoutY + 36.0, 35.0)
7566

76-
const val ControlButtonsSpacing = 10.0
67+
fun circleForRipple(button: ToggleButton) = Circle(button.layoutX + 36.0, button.layoutY + 36.0,35.0)
7768
}
78-
>>>>>>> 3dc5231 (codestyle)

0 commit comments

Comments
 (0)