private void ShowLastLogsAction(object o)
        {
            if (!(o is bool))
            {
                return;
            }
            bool b = (bool)o;

            if (b)
            {
                CurrentTab.LoadLastLogs();
            }
            CurrentTab.IsAddingNewestEntries = b;
        }