Kaydet (Commit) 0865a45c authored tarafından Hakan Dündar's avatar Hakan Dündar

Minor improvements (GUI, translations, etc.)

üst bc8679c6
# System Monitoring Center
### v1.24.0
* New: European Portuguese translations
* Changed process details window behavior when process is ended
* Fix: Getting services on older distributions (Services tab)
* Minor improvements (GUI, translations, etc.)
### v1.23.0
* Improved start speed of Services tab on several systems
* Improved information show speed on some systems (System tab)
......
......@@ -92,7 +92,14 @@ class ProcessesDetails:
except AttributeError:
pass
# THis value is checked for repeating the function for getting the process data.
# Delete first row of the grid and widget in it if it is a label. This widget can be a label if a process is ended when its window is opened. An information label is added into the first row of the grid in this situation and it stays here if a window of another process is opened.
widget_in_first_row = self.grid2101w.get_child_at(0, 0)
widget_name_in_first_row = widget_in_first_row.get_name()
if widget_name_in_first_row == "GtkLabel":
self.grid2101w.remove_row(0)
widget_in_first_row.destroy()
# This value is checked for repeating the function for getting the process data.
self.update_window_value = 1
# Call this function in order to reset Processes Details window GUI.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment