diff options
| author | Teddy Wing | 2020-10-10 21:06:05 +0200 |
|---|---|---|
| committer | Teddy Wing | 2020-10-10 21:06:43 +0200 |
| commit | 3d76a016b055d0cd252efa181b648f80fa4acd77 (patch) | |
| tree | 699a2eca2cfd01256654b2ebbcdd7760c5c3f9fc /Drop Serve | |
| parent | 59704119e5d39927f68854c5dca9a3b4e0c64b57 (diff) | |
| download | Drop-Serve-3d76a016b055d0cd252efa181b648f80fa4acd77.tar.bz2 | |
StatusView.m: Hide the status section when "Stop" button is clicked
Provides visual feedback that the server has stopped (or should have
stopped).
Diffstat (limited to 'Drop Serve')
| -rw-r--r-- | Drop Serve/StatusView.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Drop Serve/StatusView.m b/Drop Serve/StatusView.m index a96f3ff..8d93175 100644 --- a/Drop Serve/StatusView.m +++ b/Drop Serve/StatusView.m @@ -19,6 +19,7 @@ - (IBAction)stopServer:(id)sender { [Server stop]; + [self setHidden:YES]; } @end |
