aboutsummaryrefslogtreecommitdiff
path: root/c/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c/main.cpp')
-rw-r--r--c/main.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/c/main.cpp b/c/main.cpp
index 477e750..d76225e 100644
--- a/c/main.cpp
+++ b/c/main.cpp
@@ -193,11 +193,17 @@ static LRESULT CALLBACK CBTProc(const int nCode, const WPARAM wParam, const LPAR
g_elv = new EpisodeListView(g_hWnd);
/* Get saved view settings. */
- char* s;
Pl("cfg","get_view_watched",&g_bViewWatched);
Pl("cfg","get_view_tv_original",&g_bViewTVOriginal);
+
+ char* s;
if (Pl("cfg","get_limit_screenwriter",&s))
strcpy_s(g_currentScreenwriter, sizeof(g_currentScreenwriter), s);
+
+ int dlvHeight = 0;
+ Pl("cfg","get_dlv_height",&dlvHeight);
+ g_dlv->SetHeight(dlvHeight);
+
return 0;
}