1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

[#155 state:fixed] Added dg edition name in results window.

This commit is contained in:
Virgil Dupras
2011-04-22 11:37:53 +02:00
parent 59eaf5305a
commit 417233a47f
6 changed files with 5 additions and 5 deletions

View File

@@ -19,6 +19,7 @@ http://www.hardcoded.net/licenses/bsd_license
[self window];
_app = aParentApp;
_py = [_app py];
[[self window] setTitle:[_py appName]];
_alwaysShowPopUp = NO;
[self fillPopUpMenu];
_recentDirectories = [[HSRecentFiles alloc] initWithName:@"recentDirectories" menu:[addButtonPopUp menu]];

View File

@@ -19,6 +19,7 @@ http://www.hardcoded.net/licenses/bsd_license
self = [super initWithWindowNibName:@"ResultWindow"];
app = aApp;
py = [app py];
[[self window] setTitle:fmt(@"%@ Results", [py appName])];
columnsMenu = [app columnsMenu];
/* Put a cute iTunes-like bottom bar */
[[self window] setContentBorderThickness:28 forEdge:NSMinYEdge];