1
0
Fork 0

Merge pull request #548 from yarda/tuned-gui

gui: fixed inconsistent tabs and spaces, introduced by #516
This commit is contained in:
Jaroslav Škarvada 2023-08-17 23:55:28 +02:00 committed by GitHub
commit 3d4a5cd20e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -249,10 +249,10 @@ class Base(object):
self.manager.get_profile(self.controller.active_profile())
else:
self.active_profile = None
try:
self._gobj('summaryProfileName').set_text(self.active_profile.name)
except:
self.error_dialog('No active profile set', '')
try:
self._gobj('summaryProfileName').set_text(self.active_profile.name)
except:
self.error_dialog('No active profile set', '')
try:
self._gobj('summaryIncludedProfileName').set_text(self.active_profile.options['include'
])