diff --git a/src/vorta/assets/UI/abouttab.ui b/src/vorta/assets/UI/abouttab.ui
index 791b72915..251015d20 100644
--- a/src/vorta/assets/UI/abouttab.ui
+++ b/src/vorta/assets/UI/abouttab.ui
@@ -150,29 +150,6 @@
- -
-
-
- Qt::AlignHCenter
-
-
- 10
-
-
-
-
-
- <html><head/><body><p><a href="file:///"><span style=" text-decoration: underline; color:#0984e3;">View the logs</span></a></p></body></html>
-
-
- 0
-
-
- true
-
-
-
-
-
-
diff --git a/src/vorta/assets/UI/scheduletab.ui b/src/vorta/assets/UI/scheduletab.ui
index 67dbc2c2f..6aa0705d9 100644
--- a/src/vorta/assets/UI/scheduletab.ui
+++ b/src/vorta/assets/UI/scheduletab.ui
@@ -575,15 +575,21 @@
0
0
687
- 384
+ 402
Log
-
-
-
+
+
+ 9
+ 39
+ 671
+ 361
+
+
11
@@ -624,9 +630,35 @@
Returncode
-
-
-
+
+
+
+
+ 20
+ 0
+ 621
+ 28
+
+
+
+
+ 10
+
+ -
+
+
+ <html><head/><body><p><a href="file:///"><span style=" text-decoration: underline; color:#0984e3;">View the logs</span></a></p></body></html>
+
+
+ 0
+
+
+ true
+
+
+
+
+
@@ -634,7 +666,7 @@
0
0
687
- 384
+ 402
diff --git a/src/vorta/views/about_tab.py b/src/vorta/views/about_tab.py
index 41928b400..956e87249 100644
--- a/src/vorta/views/about_tab.py
+++ b/src/vorta/views/about_tab.py
@@ -2,7 +2,6 @@
from PyQt6 import QtCore, uic
-from vorta import config
from vorta._version import __version__
from vorta.store.models import BackupProfileMixin
from vorta.utils import get_asset
@@ -22,10 +21,6 @@ def __init__(self, parent=None):
super().__init__(parent)
self.setupUi(parent)
self.versionLabel.setText(__version__)
- self.logLink.setText(
- f'Click here to view the logs.'
- )
self.gpl_logo.setPixmap(get_colored_icon('gpl_logo', scaled_height=40, return_qpixmap=True))
self.python_logo.setPixmap(get_colored_icon('python_logo', scaled_height=40, return_qpixmap=True))
diff --git a/src/vorta/views/schedule_tab.py b/src/vorta/views/schedule_tab.py
index a03b191c7..f8797d20d 100644
--- a/src/vorta/views/schedule_tab.py
+++ b/src/vorta/views/schedule_tab.py
@@ -8,7 +8,7 @@
QTableWidgetItem,
)
-from vorta import application
+from vorta import application, config
from vorta.i18n import get_locale
from vorta.scheduler import ScheduleStatusType
from vorta.store.models import BackupProfileMixin, EventLogModel, WifiSettingModel
@@ -43,6 +43,10 @@ def __init__(self, parent=None):
# Set up log table
self.logTableWidget.setAlternatingRowColors(True)
header = self.logTableWidget.horizontalHeader()
+ self.logLink.setText(
+ f'Click here to view the logs.'
+ )
header.setVisible(True)
[header.setSectionResizeMode(i, QHeaderView.ResizeMode.ResizeToContents) for i in range(5)]
header.setSectionResizeMode(3, QHeaderView.ResizeMode.Stretch)