maj non push ?

This commit is contained in:
Louis Mazin 2026-04-21 13:59:00 +02:00
parent 2085207f18
commit c1d73b07b0
4 changed files with 13 additions and 13 deletions

View File

@ -366,7 +366,6 @@ class DicomManager(QObject):
# Create DicomFile without immediate validation # Create DicomFile without immediate validation
dicom_file = DicomFile(path.join(dicomdirPath, dcm_file)) dicom_file = DicomFile(path.join(dicomdirPath, dcm_file))
dcm_files.append(dicom_file) dcm_files.append(dicom_file)
# Create Dicom object with all files (validation will happen later) # Create Dicom object with all files (validation will happen later)
if dcm_files: if dcm_files:
return Dicom(dcm_files, path.basename(dicomdirPath), dicomdirPath) return Dicom(dcm_files, path.basename(dicomdirPath), dicomdirPath)

View File

@ -66,11 +66,19 @@ class ThemeManager:
border-radius: 3px; border-radius: 3px;
}} }}
QTextEdit {{ QTextEdit {{
border: 1px solid {self.current_theme.get_color("border_color")}; border: 2px solid {self.current_theme.get_color("border_color")};
border-radius: 8px; border-radius: 8px;
padding: 10px; padding: 5px;
font-size: 14px; font-size: 14px;
background-color: {self.current_theme.get_color("background_secondary_color")}; background-color: {self.current_theme.get_color("border_color")};
color: {self.current_theme.get_color("text_color")};
}}
QLineEdit {{
border: 2px solid {self.current_theme.get_color("border_color")};
border-radius: 8px;
padding: 5px;
font-size: 14px;
background-color: {self.current_theme.get_color("border_color")};
color: {self.current_theme.get_color("text_color")}; color: {self.current_theme.get_color("text_color")};
}} }}
QComboBox {{ QComboBox {{
@ -155,11 +163,4 @@ class ThemeManager:
#tab_bar {{ #tab_bar {{
background-color: {self.current_theme.get_color("background_color")}; background-color: {self.current_theme.get_color("background_color")};
}} }}
#drag_area {{
border: 2px dashed {self.current_theme.get_color("border_color")};
}}
#drag_indicator {{
border: 2px dashed #0078d7;
font-size: 60px;
}}
""" """

View File

@ -1,7 +1,7 @@
{ {
"app_name": "HoDA Radio", "app_name": "HoDA Radio",
"app_os": "Windows", "app_os": "Windows",
"app_version": "1.0.0", "app_version": "1.0.1",
"architecture": "x64", "architecture": "x64",
"icon_path": "data/assets/icon.ico", "icon_path": "data/assets/icon.ico",
"splash_image": "splash", "splash_image": "splash",

View File

@ -1,5 +1,5 @@
{ {
"theme": "dark", "theme": "light",
"lang": "fr", "lang": "fr",
"window_size": {"width": 1000, "height": 600}, "window_size": {"width": 1000, "height": 600},
"maximized": true "maximized": true