diff --git a/pyproject.toml b/pyproject.toml index d401622..7fd2f10 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "xrandroll" -version = "0.1.0" +version = "0.1.1" description = "A powertool to configure your display" authors = ["Roberto Alsina "] license = "MIT" diff --git a/xrandroll/main.py b/xrandroll/main.py index 84fb326..058274d 100644 --- a/xrandroll/main.py +++ b/xrandroll/main.py @@ -218,9 +218,6 @@ class Window(QObject): target_x, target_y = [replicate[x] for x in ["res_x", "res_y"]] scale_x = 1000 * target_x / mod_x scale_y = 1000 * target_y / mod_y - breakpoint() - print(target_x, target_y, mod_x, mod_y) - print(scale_x, scale_y) self.ui.horizontalScale.setValue(scale_x) self.ui.verticalScale.setValue(scale_y)