openbsd-ports/x11/gnustep/zipper/patches/patch-PreferencesController_m
sebastia 91ec19533d Import Zipper: Zipper is a tool for inspecting compressed archvies. It integrates with the GWorkspace desktop.
Zipper consists only of a single window, displaying the contents of the
selected archive. Currently, you can view and extract .tar, .tar.gz,
.tar.bz2, .rar, .lha, .lhz, .zip and .7z archives. Further it allows to
create .tar.gz archives.

OK landry@
2011-07-19 13:58:02 +00:00

17 lines
562 B
Plaintext

$OpenBSD: patch-PreferencesController_m,v 1.1.1.1 2011/07/19 13:58:02 sebastia Exp $
Allow the preferences to remember where to find the 7zip binary
--- PreferencesController.m.orig Wed Apr 27 19:32:12 2011
+++ PreferencesController.m Wed Apr 27 19:33:45 2011
@@ -37,6 +37,9 @@
// lzx
string = [Preferences lzxExecutable];
[_lzxTextField setStringValue:string];
+ // 7z
+ string = [Preferences sevenZipExecutable];
+ [_sevenZipTextField setStringValue:string];
// bsd tar checkbox
tarFlag = [Preferences isBsdTar];
[_bsdTarButon setState:tarFlag];