Commit d40d3d29 authored by DoinLakeFlyer's avatar DoinLakeFlyer
Browse files

Fix empty Plan File dropdown display
parent 8d20342c
......@@ -30,8 +30,10 @@ Rectangle {
function simulateClick(buttonIndex) {
buttonIndex = buttonIndex + 1 // skip over title
toolStripColumn.children[buttonIndex].checked = true
toolStripColumn.children[buttonIndex].clicked()
if (!toolStripColumn.children[buttonIndex].checked) {
toolStripColumn.children[buttonIndex].checked = true
toolStripColumn.children[buttonIndex].clicked()
}
}
// Ensure we don't get narrower than content
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment