2
2
3
3
# v1.0.0
4
4
5
- from PySide6 .QtWidgets import QDialog , QVBoxLayout , QLabel , QPushButton , QTextBrowser , QSpacerItem , QSizePolicy
5
+ from PySide6 .QtWidgets import QDialog , QVBoxLayout , QLabel , QPushButton , QTextBrowser
6
6
from PySide6 .QtCore import Qt
7
7
8
8
class AboutDialog (QDialog ):
9
9
def __init__ (self , parent = None ):
10
10
super ().__init__ (parent )
11
11
self .setWindowTitle ("About File Tree Generator" )
12
- self .setFixedSize (420 , 370 )
12
+ self .setFixedSize (420 , 430 )
13
13
self ._setup_ui ()
14
14
15
15
def _setup_ui (self ):
@@ -30,8 +30,9 @@ def _setup_ui(self):
30
30
author_label .setOpenExternalLinks (True )
31
31
32
32
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."
35
36
)
36
37
desc_label .setWordWrap (True )
37
38
desc_label .setAlignment (Qt .AlignCenter )
@@ -46,8 +47,7 @@ def _setup_ui(self):
46
47
github_repo .setAlignment (Qt .AlignCenter )
47
48
github_repo .setOpenExternalLinks (True )
48
49
49
- # More spacing before attribution
50
- layout .addSpacing (8 )
50
+ layout .addSpacing (10 )
51
51
52
52
icon_attribution = QTextBrowser ()
53
53
icon_attribution .setOpenExternalLinks (True )
0 commit comments