diff options
author | Dan Nicholson <dbn.lists@gmail.com> | 2013-01-19 16:28:47 -0800 |
---|---|---|
committer | Dan Nicholson <dbn.lists@gmail.com> | 2013-01-19 16:28:47 -0800 |
commit | 06e7ec064faa2a41a6665f335294c16775592eef (patch) | |
tree | 9cef97e9b7cb47854c95ddaa395921032e56953a /src | |
parent | 47fc338f8ed28b44ba7cc9cebee3d2eb675e375f (diff) |
Only force redrawing when the plugin is in-process
Out-of-process GtkPlug seems to work fine, so let's reserve this hack
only for when it's needed.
Diffstat (limited to 'src')
-rw-r--r-- | src/evbp.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -291,7 +291,8 @@ evbp_stream_as_file(NPP instance, NPStream *stream, const char *fname) g_error_free(error); return; } - evbp_force_redraw(instance); + if (priv->in_process) + evbp_force_redraw(instance); } static void |