Closed ATATC closed 4 months ago
In #334, a fatal change accidentally put context_manager.layout([widgets], 0, window_index) under the condition that the screen has to be wider than 2:1.
context_manager.layout([widgets], 0, window_index)
The code intended to perform like:
if num_widgets > 2: widgets.insert(0, SpeedTrendMeter(w.root(), "CTkLabel", height=w.height(), variable=var_speed_trend, font=fonts[1])) context_manager.layout([widgets], 0, window_index)
However, it was accidentally written as:
Cause
In #334, a fatal change accidentally put
context_manager.layout([widgets], 0, window_index)
under the condition that the screen has to be wider than 2:1.The code intended to perform like:
However, it was accidentally written as: