remove frames from lists

This commit is contained in:
alfrix
2022-11-28 00:15:28 -03:00
parent 56149e4148
commit 25797b5ed3
16 changed files with 19 additions and 97 deletions

View File

@@ -103,12 +103,8 @@ class LimitsPanel(ScreenPanel):
item.attach(scale, 0, 1, 1, 1)
item.attach(reset, 1, 1, 1, 1)
frame = Gtk.Frame()
frame.get_style_context().add_class("frame-item")
frame.add(item)
self.limits[option] = {
"row": frame,
"row": item,
"scale": scale,
"adjustment": adj,
}