Skip to content

Commit 5419bfc

Browse files
Merge pull request #114 from mohamedalysayed/Standard-release
No major updates!
2 parents 12edc01 + 40d923a commit 5419bfc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/SplashFOAM.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def __init__(self, root):
121121
self.start_time = time.time()
122122
self.license_start_date_file = "license_start_date.txt" # File to store the start date
123123
self.license_duration = 1 * 365 * 24 * 3600 # 1 year in seconds
124-
self.notice_period_before_end = 30 * 24 * 3600 # Notify 30 days before the license expires
124+
self.notice_period_before_end = 15 * 24 * 3600 # Notify 15 days before the license expires
125125
self.elapsed_time_file = ".elapsed_time.txt" # Making the file name start with a dot to "hide" it in Unix/Linux
126126

127127
# Create a label for the "Elapsed time:" text
@@ -1485,7 +1485,7 @@ def hide_tooltip(self):
14851485

14861486
def setup_ui(self):
14871487
# Create the Text widget
1488-
self.text_box = tk.Text(self.root, wrap=tk.WORD, height=31, width=100)
1488+
self.text_box = tk.Text(self.root, wrap=tk.WORD, height=30, width=100)
14891489
self.text_box.grid(row=0, column=4, columnspan=5, padx=10, pady=1, sticky="nsew", rowspan=13)
14901490
self.text_box.configure(foreground="lightblue", background="black", font=("courier", 13, "bold"))
14911491

0 commit comments

Comments
 (0)