Skip to content

Commit

Permalink
fixes #171
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-claw committed Mar 17, 2024
1 parent e9b4ca2 commit 331749c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class ThreadSelectionTableFragment : Fragment("Thread") {
}

tableView = tableview(items) {
addClass(Styles.DENSE, Styles.STRIPED)
addClass(Styles.DENSE)
selectionModel.selectionMode = SelectionMode.MULTIPLE
setRowFactory {
val tableRow = TableRow<ThreadSelectionModel>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ class ImagesTableView : View("Photos") {
}
with(root) {
tableView = tableview(items) {
addClass(Styles.DENSE, Styles.STRIPED)
addClass(Styles.DENSE)
setRowFactory {
val tableRow = TableRow<ImageModel>()
val urlItem = MenuItem("Open link").apply {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ class LogTableView : View() {

with(root) {
tableView = tableview(items) {
addClass(Styles.DENSE, Styles.STRIPED)
addClass(Styles.DENSE)
selectionModel.selectionMode = SelectionMode.SINGLE
setRowFactory {
val tableRow = TableRow<LogModel>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ class PostsTableView : View() {

with(root) {
tableView = tableview(items) {
addClass(Styles.DENSE, Styles.STRIPED)
addClass(Styles.DENSE)
selectionModel.selectionMode = SelectionMode.MULTIPLE
setRowFactory {
val tableRow = TableRow<PostModel>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ class ThreadTableView : View() {

with(root) {
tableView = tableview(items) {
addClass(Styles.DENSE, Styles.STRIPED)
addClass(Styles.DENSE)
selectionModel.selectionMode = SelectionMode.MULTIPLE
setRowFactory {
val tableRow = TableRow<ThreadModel>()
Expand Down

0 comments on commit 331749c

Please sign in to comment.