Weston Braun
06/28/2022, 1:14 AMWeston Braun
06/28/2022, 1:39 AMTim Edwards
06/28/2022, 12:55 PMwrapper.tcl
line 893:
set winheight [expr {[winfo height ${framename}] - \
[winfo height ${framename}.titlebar]}]
I would think that the height of the layout window is pretty obvious, so this seems like it must be some obscure Tcl/Tk problem. The Tcl code here could be written to check some environment variable, say, like $LAYOUT_ICON_COLS
, and set the number of columns to that up front (at wrapper.tcl line 861):
set ncols 0
if {[info exists ::env(LAYOUT_ICON_COLS)]} {set ncols [expr $::env(LAYOUT_ICON_COLS) - 1]}
Tim Edwards
06/28/2022, 1:10 PMWeston Braun
06/28/2022, 6:34 PMWeston Braun
06/28/2022, 6:35 PMWeston Braun
06/28/2022, 6:37 PMWeston Braun
06/28/2022, 6:38 PMWeston Braun
06/28/2022, 6:38 PMTim Edwards
06/28/2022, 8:19 PM