worked on grid configure weights

This commit is contained in:
paul
2025-03-24 15:50:46 +05:30
parent 1912e53672
commit 8b386e3263
12 changed files with 301 additions and 697 deletions

View File

@@ -34,7 +34,8 @@ class Frame extends TkinterBase{
return [
`${variableName} = tk.Frame(master=${parent})`,
`${variableName}.config(bg="${bg}")`,
`${variableName}.${this.getLayoutCode()}`
`${variableName}.${this.getLayoutCode()}`,
...this.getGridLayoutConfigurationCode(variableName)
]
}