minor bug fixes

This commit is contained in:
paul
2024-09-29 20:57:10 +05:30
parent 97fca285d7
commit 923e371f1f
4 changed files with 20 additions and 17 deletions

View File

@@ -54,19 +54,19 @@ export class TkinterBase extends Widget {
const expand = this.getAttrValue("flexManager.expand")
if (fillX){
config['fill'] = "'x'"
config['fill'] = `"x"`
}
if (fillY){
config['fill'] = "'y'"
config['fill'] = `"y"`
}
if (fillX && fillY){
config['fill'] = "'both'"
config['fill'] = `"both"`
}
if (expand){
config['expand'] = 'True'
config['expand'] = "True"
}
layoutManager = `pack(${convertObjectToKeyValueString(config)})`