diff options
| author | Jonas Schnelli <[email protected]> | 2013-05-03 15:18:28 +0200 |
|---|---|---|
| committer | Jonas Schnelli <[email protected]> | 2013-06-03 12:26:56 +0200 |
| commit | f679b2900a3a9f863f888cfb0b1a5e593628e37b (patch) | |
| tree | 0df6f7125e4a9c8c9e583f4a36e8e1451eec3030 /src/qt/bitcoin.cpp | |
| parent | Merge pull request #2595 from sipa/noannloc (diff) | |
| download | discoin-f679b2900a3a9f863f888cfb0b1a5e593628e37b.tar.xz discoin-f679b2900a3a9f863f888cfb0b1a5e593628e37b.zip | |
MaxOSX: settings fixes (#2371)
- Launch-At-Startup implementation for mac
- Remove "Window" tab in settings
Signed-off-by: Jonas Schnelli <[email protected]>
Diffstat (limited to 'src/qt/bitcoin.cpp')
| -rw-r--r-- | src/qt/bitcoin.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/qt/bitcoin.cpp b/src/qt/bitcoin.cpp index 25448ea8c..f869c5862 100644 --- a/src/qt/bitcoin.cpp +++ b/src/qt/bitcoin.cpp @@ -211,9 +211,12 @@ int main(int argc, char *argv[]) try { +#ifndef Q_OS_MAC // Regenerate startup link, to fix links to old versions + // OSX: makes no sense on mac and might also scan/mount external (and sleeping) volumes (can take up some secs) if (GUIUtil::GetStartOnSystemStartup()) GUIUtil::SetStartOnSystemStartup(true); +#endif boost::thread_group threadGroup; |