From b83b113f3c60d37f363ba2681455497ad9dad772 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 3 Mar 2016 10:48:17 +0800 Subject: [PATCH] gui/moninj: make widgets look less like buttons --- artiq/gui/moninj.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq/gui/moninj.py b/artiq/gui/moninj.py index 9e5d0a733..43892876a 100644 --- a/artiq/gui/moninj.py +++ b/artiq/gui/moninj.py @@ -29,7 +29,7 @@ class _TTLWidget(QtWidgets.QFrame): QtWidgets.QFrame.__init__(self) - self.setFrameShape(QtWidgets.QFrame.Panel) + self.setFrameShape(QtWidgets.QFrame.Box) self.setFrameShadow(QtWidgets.QFrame.Raised) grid = QtWidgets.QGridLayout()