aboutsummaryrefslogtreecommitdiffstats
path: root/Drop Serve
diff options
context:
space:
mode:
authorTeddy Wing2020-10-10 21:06:05 +0200
committerTeddy Wing2020-10-10 21:06:43 +0200
commit3d76a016b055d0cd252efa181b648f80fa4acd77 (patch)
tree699a2eca2cfd01256654b2ebbcdd7760c5c3f9fc /Drop Serve
parent59704119e5d39927f68854c5dca9a3b4e0c64b57 (diff)
downloadDrop-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.m1
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