diff --git a/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy b/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy index ce068fdc..8b7dae83 100644 --- a/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy +++ b/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy @@ -196,15 +196,15 @@ class MainFrameView { } } panel (constraints : BorderLayout.SOUTH) { - borderLayout() - panel (constraints : BorderLayout.EAST) { - label("Shared:") - label(text : bind {model.loadedFiles.toString()}) - } - panel (constraints : BorderLayout.WEST) { + gridLayout(rows:1, cols:2) + panel { button(text : "Add directories to watch", actionPerformed : watchDirectories) button(text : "Share files", actionPerformed : shareFiles) } + panel { + label("Shared:") + label(text : bind {model.loadedFiles.toString()}) + } } } panel (border : etchedBorder()) {