From c37bbf4bb4ed0c04ea95c5824c3ead926894c877 Mon Sep 17 00:00:00 2001 From: Roberto Alsina Date: Mon, 3 Feb 2020 08:32:24 -0300 Subject: [PATCH] v 0.1.1 --- pyproject.toml | 2 +- xrandroll/main.py | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) 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)