diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-12-18 18:29:32 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-12-18 18:33:56 -0800 |
commit | 11495bbb2bba6e3cdb69078625dc7c90bc443c39 (patch) | |
tree | f92ec487e89a2897aacf1a156afbe758262b434d | |
parent | d1d17c543c450931b1fa3402496cbd2d47ffea1b (diff) | |
download | subsurface-11495bbb2bba6e3cdb69078625dc7c90bc443c39.tar.gz |
Use an ellipsis for Nitrox O2% ranges
The plain dash may look a bit too much like a trimix specification. Is
the ellipsis better? Maybe.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | divelist.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/divelist.c b/divelist.c index f664cde49..86e7daf57 100644 --- a/divelist.c +++ b/divelist.c @@ -292,6 +292,8 @@ static gint nitrox_sort_func(GtkTreeModel *model, return a_he - b_he; } +#define UTF8_ELLIPSIS "\xE2\x80\xA6" + static void nitrox_data_func(GtkTreeViewColumn *col, GtkCellRenderer *renderer, GtkTreeModel *model, @@ -315,7 +317,7 @@ static void nitrox_data_func(GtkTreeViewColumn *col, if (o2 == o2low) snprintf(buffer, sizeof(buffer), "%d", o2); else - snprintf(buffer, sizeof(buffer), "%d-%d", o2low, o2); + snprintf(buffer, sizeof(buffer), "%d" UTF8_ELLIPSIS "%d", o2low, o2); else strcpy(buffer, "air"); |