22
33# v1.0.0
44
5- from PySide6 .QtWidgets import QDialog , QVBoxLayout , QLabel , QPushButton , QTextBrowser , QSpacerItem , QSizePolicy
5+ from PySide6 .QtWidgets import QDialog , QVBoxLayout , QLabel , QPushButton , QTextBrowser
66from PySide6 .QtCore import Qt
77
88class AboutDialog (QDialog ):
99 def __init__ (self , parent = None ):
1010 super ().__init__ (parent )
1111 self .setWindowTitle ("About File Tree Generator" )
12- self .setFixedSize (420 , 370 )
12+ self .setFixedSize (420 , 430 )
1313 self ._setup_ui ()
1414
1515 def _setup_ui (self ):
@@ -30,8 +30,9 @@ def _setup_ui(self):
3030 author_label .setOpenExternalLinks (True )
3131
3232 desc_label = QLabel (
33- "File Tree Generator is a modern tool for visualizing, searching, and exporting directory trees.<br>"
34- "Easily exclude files or folders, switch between ASCII and box-drawing styles, and export your results."
33+ "File Tree Generator is a modern tool for visualizing, searching, and exporting directory trees.<br><br>"
34+ "Easily exclude files or folders, switch between ASCII and box-drawing styles, and export your results.<br><br>"
35+ "Exclusions and settings are saved automatically."
3536 )
3637 desc_label .setWordWrap (True )
3738 desc_label .setAlignment (Qt .AlignCenter )
@@ -46,8 +47,7 @@ def _setup_ui(self):
4647 github_repo .setAlignment (Qt .AlignCenter )
4748 github_repo .setOpenExternalLinks (True )
4849
49- # More spacing before attribution
50- layout .addSpacing (8 )
50+ layout .addSpacing (10 )
5151
5252 icon_attribution = QTextBrowser ()
5353 icon_attribution .setOpenExternalLinks (True )
0 commit comments