[gtranslator] Fix next untranslated or fuzzy
- From: Aurimas Äernius <aurimasc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtranslator] Fix next untranslated or fuzzy
- Date: Sat, 2 Feb 2013 18:35:37 +0000 (UTC)
commit 3fab05aa434e9a801fe0286e96c41d865e23c032
Author: Aurimas Äernius <aurisc4 gmail com>
Date: Sat Jan 26 18:44:58 2013 +0200
Fix next untranslated or fuzzy
Oposite condition when checking for translation end.
Go forward, rather than backward.
src/gtr-tab.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/gtr-tab.c b/src/gtr-tab.c
index 538b27f..63f7bfe 100644
--- a/src/gtr-tab.c
+++ b/src/gtr-tab.c
@@ -1857,11 +1857,11 @@ gtr_tab_go_to_next_fuzzy_or_untrans (GtrTab * tab)
{
GtrMsg *msg;
- if (_gtr_tab_finish_edition (tab))
+ if (!_gtr_tab_finish_edition (tab))
return FALSE;
msg = gtr_message_table_navigate (GTR_MESSAGE_TABLE (tab->priv->message_table),
- GTR_NAVIGATE_PREV,
+ GTR_NAVIGATE_NEXT,
message_is_fuzzy_or_untranslated);
if (msg != NULL)
{
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]