1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-03-10 02:37:59 +01:00

fix(bec_widgets): adapt to bec_qthemes 1.0; themes can be only applied on living Qt objects

This commit is contained in:
2025-08-19 10:50:56 +02:00
parent d25314e6ee
commit b0cd619d7d
44 changed files with 164 additions and 277 deletions

View File

@@ -252,8 +252,15 @@ class BECQueue(BECWidget, CompactPopupWidget):
abort_button.button.setIcon(
material_icon("cancel", color="#cc181e", filled=True, convert_to_pixmap=False)
)
abort_button.button.setStyleSheet("background-color: rgba(0,0,0,0) ")
abort_button.button.setFlat(True)
abort_button.setStyleSheet(
"""
QPushButton {
background-color: transparent;
border: none;
}
"""
)
return abort_button
def delete_selected_row(self):