summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreeki <treeki@gmail.com>2012-09-03 02:16:17 +0200
committerTreeki <treeki@gmail.com>2012-09-03 02:16:17 +0200
commit01654a40da349d461b1bc09e7a0cd248cd98e1d5 (patch)
tree4a5a7c231c38a39b0cd34b6e52977f5e262cedbe
parent62e6a67f0e755ecc8a56f0ce6b68499eba7e5e64 (diff)
downloadLayoutStudio-01654a40da349d461b1bc09e7a0cd248cd98e1d5.tar.gz
LayoutStudio-01654a40da349d461b1bc09e7a0cd248cd98e1d5.zip
how did I miss this the first time.. pane height can now be edited
-rw-r--r--lspaneeditor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lspaneeditor.cpp b/lspaneeditor.cpp
index 1f6ba11..3c4413d 100644
--- a/lspaneeditor.cpp
+++ b/lspaneeditor.cpp
@@ -332,7 +332,7 @@ void LSPaneEditor::handleWidthChanged(double value) {
void LSPaneEditor::handleHeightChanged(double value) {
if (!m_currentlyLoadingPane) {
- m_pane->width = value;
+ m_pane->height = value;
emit mustRedrawLayout();
}
}