Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/14/11 17:06:47 (13 years ago)
Author:
ascheibe
Message:

#1233

  • fixed a bug in the hive server where it kept sending PauseAll cmd's
  • pop up the slave when a user clicks the balloon tip
  • set width of jobsView columns correctly
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/JobsView.cs

    r6743 r6764  
    7070          lstJobs.Items.Add(item);
    7171        }
    72         lstJobs.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent);
     72        if (e.Value.Jobs.Count == 0) {
     73          lstJobs.AutoResizeColumns(ColumnHeaderAutoResizeStyle.None);
     74        } else {
     75          lstJobs.AutoResizeColumns(ColumnHeaderAutoResizeStyle.ColumnContent);
     76        }
    7377      }
    7478    }
Note: See TracChangeset for help on using the changeset viewer.