Merge pull request #3 from bec-project/chore/update-1.1.2

Update repo with template version v1.1.2
This commit is contained in:
2025-07-10 09:28:09 +01:00
committed by GitHub
3 changed files with 17 additions and 8 deletions

View File

@@ -2,7 +2,7 @@
# It is needed to track the repo template version, and editing may break things.
# This file will be overwritten by copier on template updates.
_commit: v1.1.1
_commit: v1.1.2
_src_path: https://github.com/bec-project/plugin_copier_template.git
make_commit: true
project_name: bec_testing_plugin

View File

@@ -1,8 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>Examplewidgetplugin</class>
<widget class="QWidget" name="examplewidgetplugin">
</widget>
<resources />
<connections />
</ui>
<class>examplewidgetplugin</class>
<widget class="QWidget" name="examplewidgetplugin">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>150</width>
<height>150</height>
</rect>
</property>
</widget>
<resources/>
<connections/>
</ui>

View File

@@ -17,10 +17,11 @@ from PySide6.QtGui import (QBrush, QColor, QConicalGradient, QCursor,
QPalette, QPixmap, QRadialGradient, QTransform)
from PySide6.QtWidgets import (QApplication, QSizePolicy, QWidget)
class Ui_Examplewidgetplugin(object):
class Ui_examplewidgetplugin(object):
def setupUi(self, examplewidgetplugin):
if not examplewidgetplugin.objectName():
examplewidgetplugin.setObjectName(u"examplewidgetplugin")
examplewidgetplugin.resize(150, 150)
self.retranslateUi(examplewidgetplugin)