Skip to content

Commit 05d3b2a

Browse files
authored
main.py
1 parent 3bc1af6 commit 05d3b2a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from PyQt6 import QtWidgets, uic
22
from PyQt6.QtWidgets import QApplication, QMainWindow, QMessageBox
33
from PyQt6.QtCore import Qt
4-
4+
#Autor: PetusoTwo
55
# Funcion para encriptar el texto
66
def encriptador_cesar(texto, desplazamiento):
77
alphabet = "abcdefghijklmnñopqrstuvwxyz"
@@ -82,7 +82,7 @@ def copiar_texto(self):
8282
QMessageBox.information(self, "Exito | PetusoTwo", "Texto copiado al portapapeles")
8383
else:
8484
QMessageBox.warning(self, "Error | PetusoTwo", "No hay texto para copiar")
85-
85+
#Autor PetusoTwo
8686
#Funciones para que la ventana se pueda mover#
8787
def mousePressEvent(self, event):
8888
if event.button() == Qt.MouseButton.LeftButton:
@@ -102,3 +102,4 @@ def mouseReleaseEvent(self, event):
102102
window = MainWindow()
103103
window.show()
104104
app.exec()
105+
#Autor PetusoTwo

0 commit comments

Comments
 (0)