Fix "view source" always being disabled on win32

This commit is contained in:
Paweł Forysiuk 2012-06-30 12:11:10 +02:00 committed by Christian Dywan
parent 103664a8f0
commit 262ded5222
1 changed files with 5 additions and 0 deletions

View File

@ -5247,7 +5247,12 @@ midori_view_can_view_source (MidoriView* view)
return FALSE;
content_type = g_content_type_from_mime_type (view->mime_type);
#ifdef _WIN32
/* On Win32 text/plain maps to ".txt" but is_a expects "text" */
text_type = g_strdup ("text");
#else
text_type = g_content_type_from_mime_type ("text/plain");
#endif
is_text = g_content_type_is_a (content_type, text_type);
g_free (content_type);
g_free (text_type);