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
Location:
branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3
Files:
5 edited

Legend:

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

    r6225 r6764  
    122122    <value>
    123123        iVBORw0KGgoAAAANSUhEUgAAAKAAAAC0CAYAAAATiCegAAAABHNCSVQICAgIfAhkiAAAAAFzUkdCAK7O
    124         HOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA3WAAAN1gGQb3mcAAAAGXRFWHRTb2Z0d2FyZQB3d3cu
     124        HOkAAAAEZ0FNQQAAsY8L/GEFAAAACXBIWXMAAA3VAAAN1QE91ljxAAAAGXRFWHRTb2Z0d2FyZQB3d3cu
    125125        aW5rc2NhcGUub3Jnm+48GgAAF8tJREFUeF7tXQe0FsUVBhQLKKBiISpixYbYC7FrJFasiT2oMQGPohxL
    126126        JJZgV0xiFI81Go3lxBaxazBibxgPWGMHsfcau+b73pl97lt2/3+/2d1/Zh/DOffwv907c+/c+ebO3JnZ
     
    229229  </data>
    230230  <data name="licenseTextBox.Text" xml:space="preserve">
    231     <value>HeuristicLab Hive is free software: you can redistribute it and/or modify
     231    <value>HeuristicLab is free software: you can redistribute it and/or modify
    232232it under the terms of the GNU General Public License as published by
    233233the Free Software Foundation, either version 3 of the License, or
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/JobsView.Designer.cs

    r6263 r6764  
    6868      //
    6969      this.columnJobId.Text = "Job Id";
     70      this.columnJobId.Width = 120;
    7071      //
    7172      // columnExecutionTime
    7273      //
    7374      this.columnExecutionTime.Text = "Execution Time";
     75      this.columnExecutionTime.Width = 120;
    7476      //
    7577      // JobsView
  • 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    }
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/SlaveMainViewBase.Designer.cs

    r6734 r6764  
    185185      this.notifyIcon.Text = "HeuristicLab Hive Slave";
    186186      this.notifyIcon.Visible = true;
     187      this.notifyIcon.BalloonTipClicked += new System.EventHandler(this.notifyIcon_BalloonTipClicked);
    187188      this.notifyIcon.DoubleClick += new System.EventHandler(this.notifyIcon_DoubleClick);
    188189      //
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Slave.Views/3.3/SlaveMainViewBase.cs

    r6743 r6764  
    9696    }
    9797
     98    private void homepageToolStripMenuItem_Click(object sender, EventArgs e) {
     99      System.Diagnostics.Process.Start("http://dev.heuristiclab.com");
     100    }
     101
    98102    private void notifyIcon_BalloonTipClicked(object sender, EventArgs e) {
    99103      OnVisibilitySwitched();
    100     }
    101 
    102     private void homepageToolStripMenuItem_Click(object sender, EventArgs e) {
    103       System.Diagnostics.Process.Start("http://dev.heuristiclab.com");
    104104    }
    105105
Note: See TracChangeset for help on using the changeset viewer.