Skip to content

Commit

Permalink
Add Setting Page Buttons...
Browse files Browse the repository at this point in the history
homepage,
email
  • Loading branch information
soleaf committed Jan 13, 2014
1 parent 05da02f commit dfe414b
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 49 deletions.
Binary file not shown.
13 changes: 12 additions & 1 deletion iHateHex/AppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ - (IBAction)changedSegments:(id)sender {
height = 320;
break;
case 2:
height = 350;
height = 370;
break;

default:
Expand Down Expand Up @@ -279,8 +279,19 @@ - (IBAction)clickedCopyButton:(id)sender {

NSButton *button = (NSButton*)sender;
[self copyToClipboardAt:button.tag];

}


- (IBAction)clickedFeedBack:(id)sender {

[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"mailto:help@mintcode.org"]];

}

- (IBAction)clickedHomepage:(id)sender {

[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"http://www.mintcode.org"]];

}

Expand Down
Loading

0 comments on commit dfe414b

Please sign in to comment.