forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
13 lines
502 B
C++
13 lines
502 B
C++
Disable grey welcome screen as it crashes Notecase at startup
|
|
|
|
--- src/MainWnd.cpp.orig 2013-07-03 17:46:48.000000000 +0200
|
|
+++ src/MainWnd.cpp 2013-07-03 17:46:48.000000000 +0200
|
|
@@ -147,7 +147,7 @@
|
|
{
|
|
g_shortcuts.Load();
|
|
|
|
- g_objIni.GetValue("Display", "DrawGrayTextView", g_bDrawTextviewExpose, 1);
|
|
+ g_objIni.GetValue("Display", "DrawGrayTextView", g_bDrawTextviewExpose, 0);
|
|
|
|
g_objIni.GetValue("Display", "TreeToTheRight", g_bTreeToTheRight);
|
|
g_bTreeToTheRightInitial = g_bTreeToTheRight;
|