Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plan window improvement #311

Merged
merged 13 commits into from
Jan 7, 2025
Prev Previous commit
Next Next commit
removed underline in code
Cathyhjj committed Nov 21, 2024
commit 3784e5a3746e3c43957736faec488dd2aa239907
2 changes: 1 addition & 1 deletion src/firefly/plans/grid_scan.py
Original file line number Diff line number Diff line change
@@ -124,7 +124,7 @@ def change_background(self, state):
"""
if state: # Checked
self.ui.relative_scan_checkbox.setStyleSheet(
"background-color: rgb(255, 85, 127);\ntext-decoration: underline;"
"background-color: rgb(255, 85, 127);"
)

else: # Unchecked
2 changes: 1 addition & 1 deletion src/firefly/plans/line_scan.py
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ def change_background(self, state):
"""
if state: # Checked
self.ui.relative_scan_checkbox.setStyleSheet(
"background-color: rgb(255, 85, 127);\ntext-decoration: underline;"
"background-color: rgb(255, 85, 127);"
)

else: # Unchecked