|
|
@@ -386,7 +386,7 @@ class SectionDesignerApp(tk.Tk):
|
|
|
|
|
|
# b (Ancho)
|
|
|
ttk.Label(self.frame_ipe, text="b (ancho flange, m):").pack(anchor=tk.W, pady=(10, 0))
|
|
|
- self.entry_b = ttk.Spinbox(self.frame_ipe, from_=0.0, to=10000.0, increment=0.005, width=15, command=self.on_parameter_change_ipe)
|
|
|
+ self.entry_b = ttk.Spinbox(self.frame_ipe, from_=0.0, to=10000.0, increment=0.01, width=15, command=self.on_parameter_change_ipe)
|
|
|
self.entry_b.pack(anchor=tk.W, fill=tk.X)
|
|
|
self.entry_b.set("0.150")
|
|
|
self.entry_b.bind('<FocusOut>', self.on_parameter_change_ipe)
|
|
|
@@ -394,7 +394,7 @@ class SectionDesignerApp(tk.Tk):
|
|
|
|
|
|
# tf (Espesor flange)
|
|
|
ttk.Label(self.frame_ipe, text="tf (espesor flange, m):").pack(anchor=tk.W, pady=(10, 0))
|
|
|
- self.entry_tf = ttk.Spinbox(self.frame_ipe, from_=0.0, to=10000.0, increment=0.0005, width=15, command=self.on_parameter_change_ipe)
|
|
|
+ self.entry_tf = ttk.Spinbox(self.frame_ipe, from_=0.0, to=10000.0, increment=0.005, width=15, command=self.on_parameter_change_ipe)
|
|
|
self.entry_tf.pack(anchor=tk.W, fill=tk.X)
|
|
|
self.entry_tf.set("0.0107")
|
|
|
self.entry_tf.bind('<FocusOut>', self.on_parameter_change_ipe)
|
|
|
@@ -402,7 +402,7 @@ class SectionDesignerApp(tk.Tk):
|
|
|
|
|
|
# tw (Espesor alma)
|
|
|
ttk.Label(self.frame_ipe, text="tw (espesor alma, m):").pack(anchor=tk.W, pady=(10, 0))
|
|
|
- self.entry_tw = ttk.Spinbox(self.frame_ipe, from_=0.0, to=10000.0, increment=0.0005, width=15, command=self.on_parameter_change_ipe)
|
|
|
+ self.entry_tw = ttk.Spinbox(self.frame_ipe, from_=0.0, to=10000.0, increment=0.005, width=15, command=self.on_parameter_change_ipe)
|
|
|
self.entry_tw.pack(anchor=tk.W, fill=tk.X)
|
|
|
self.entry_tw.set("0.0063")
|
|
|
self.entry_tw.bind('<FocusOut>', self.on_parameter_change_ipe)
|