commit 31a9c52a28cdd50188c212be24989f193b2b270b
parent 54ce0e858a8a8afb81cf1e0302b39b1f9be4b0d0
Author: Andrej Kacian <ticho@claws-mail.org>
Date: Sat, 28 May 2016 19:54:51 +0200
Fix --select CLI option on Windows when selecting a particular message.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mainwindow.c b/src/mainwindow.c
@@ -5390,7 +5390,7 @@ void mainwindow_jump_to(const gchar *target, gboolean popup)
return;
}
- msg = strrchr(tmp, G_DIR_SEPARATOR);
+ msg = strrchr(tmp, '/');
if (msg) {
*msg++ = '\0';
if ((item = folder_find_item_from_identifier(tmp))) {