From c5552f90091d90a1703405e5e054cde151a17399 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Thu, 10 Mar 2016 10:20:20 +0800 Subject: [PATCH] gui/moninj: make DDS 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 818c148f6..c9953d62a 100644 --- a/artiq/gui/moninj.py +++ b/artiq/gui/moninj.py @@ -125,7 +125,7 @@ class _DDSWidget(QtWidgets.QFrame): QtWidgets.QFrame.__init__(self) - self.setFrameShape(QtWidgets.QFrame.Panel) + self.setFrameShape(QtWidgets.QFrame.Box) self.setFrameShadow(QtWidgets.QFrame.Raised) grid = QtWidgets.QGridLayout()