Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/12/11 18:04:25 (13 years ago)
Author:
ascheibe
Message:

#1233

  • fixed a bug in the Slave UI
  • finished renaming Webservice and Dao methods to be consistent with Job/Task naming
  • some cosmetic changes and project dependencies cleanups
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Hive-3.4/sources/HeuristicLab.Clients.Hive.Administrator/3.3/Views/Common/UpdateControl.cs

    r6734 r6743  
    4040      if (imgBoxProgress.InvokeRequired) {
    4141        imgBoxProgress.Invoke(new MethodInvoker(() => imgBoxProgress.Visible = false));
     42        btnRefresh.Invoke(new MethodInvoker(() => btnRefresh.Enabled = true));
    4243      } else {
    4344        imgBoxProgress.Visible = false;
     45        btnRefresh.Enabled = true;
    4446      }
    4547    }
     
    4951        if (imgBoxProgress.InvokeRequired) {
    5052          imgBoxProgress.Invoke(new MethodInvoker(() => imgBoxProgress.Visible = true));
     53          btnRefresh.Invoke(new MethodInvoker(() => btnRefresh.Enabled = false));
    5154        } else {
    5255          imgBoxProgress.Visible = true;
     56          btnRefresh.Enabled = false;
    5357        }
    5458
Note: See TracChangeset for help on using the changeset viewer.