From 696db326031df3eb7a8e243a42a4a8b9e7105241 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Bourdeauducq?= Date: Thu, 1 Dec 2016 11:47:04 +0800 Subject: [PATCH] dashboard: mention disable in CCB policies --- artiq/dashboard/applets_ccb.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/dashboard/applets_ccb.py b/artiq/dashboard/applets_ccb.py index f7cfdcac3..1337a5363 100644 --- a/artiq/dashboard/applets_ccb.py +++ b/artiq/dashboard/applets_ccb.py @@ -34,7 +34,7 @@ class AppletsCCBDock(applets.AppletsDock): self.ccbp_group_create.triggered.connect(lambda: self.set_ccbp("create")) ccbp_group_menu.addAction(self.ccbp_group_create) actiongroup.addAction(self.ccbp_group_create) - self.ccbp_group_enable = QtWidgets.QAction("Create and enable applets", + self.ccbp_group_enable = QtWidgets.QAction("Create and enable/disable applets", self.table) self.ccbp_group_enable.setCheckable(True) self.ccbp_group_enable.triggered.connect(lambda: self.set_ccbp("enable")) @@ -57,7 +57,7 @@ class AppletsCCBDock(applets.AppletsDock): self.ccbp_global_create.setChecked(True) ccbp_global_menu.addAction(self.ccbp_global_create) actiongroup.addAction(self.ccbp_global_create) - self.ccbp_global_enable = QtWidgets.QAction("Create and enable applets", + self.ccbp_global_enable = QtWidgets.QAction("Create and enable/disable applets", self.table) self.ccbp_global_enable.setCheckable(True) ccbp_global_menu.addAction(self.ccbp_global_enable)