From 65b24ff13de68347c5999a81ea90e6e7115b43a5 Mon Sep 17 00:00:00 2001 From: Tom LAVEILLE Date: Mon, 13 Jan 2025 10:34:12 +0100 Subject: [PATCH] CopieAboutForm en trop --- CenRa_FLUX/CenRa_Flux.py | 4 ++-- CenRa_FLUX/about_form.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CenRa_FLUX/CenRa_Flux.py b/CenRa_FLUX/CenRa_Flux.py index 2acacba..1d2a818 100644 --- a/CenRa_FLUX/CenRa_Flux.py +++ b/CenRa_FLUX/CenRa_Flux.py @@ -20,7 +20,7 @@ from .tools.resources import ( maj_verif, ) from .flux_editor import Flux_Editor -from .about_form import FluxAboutDialog +from .about_form import AboutDialog from PyQt5.QtCore import * @@ -71,7 +71,7 @@ class PgFlux: """ About dialog """ - dialog = CopieAboutDialog(iface) + dialog = AboutDialog(iface) dialog.exec_() def open_help(): """ Open the online help. """ diff --git a/CenRa_FLUX/about_form.py b/CenRa_FLUX/about_form.py index b0636d0..7e1595e 100644 --- a/CenRa_FLUX/about_form.py +++ b/CenRa_FLUX/about_form.py @@ -17,7 +17,7 @@ ABOUT_FORM_CLASS, _ = uic.loadUiType( ) -class FluxAboutDialog(QDialog, ABOUT_FORM_CLASS): +class AboutDialog(QDialog, ABOUT_FORM_CLASS): """ About - Let the user display the about dialog. """