From 33fd5f95767f3e9c47c01034efcee306f194f274 Mon Sep 17 00:00:00 2001 From: alfrix Date: Tue, 22 Nov 2022 15:21:14 -0300 Subject: [PATCH] fix extrude speed buttons with no labels after 593d8c678be --- panels/extrude.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/extrude.py b/panels/extrude.py index 2a2e0611..f412d2d7 100644 --- a/panels/extrude.py +++ b/panels/extrude.py @@ -91,7 +91,7 @@ class ExtrudePanel(ScreenPanel): speedgrid = Gtk.Grid() for j, i in enumerate(self.speeds): - self.labels[f"speed{i}"] = self._gtk.Button(i) + self.labels[f"speed{i}"] = self._gtk.Button(label=i) self.labels[f"speed{i}"].connect("clicked", self.change_speed, int(i)) ctx = self.labels[f"speed{i}"].get_style_context() if ((self._screen.lang_ltr is True and j == 0) or