Alexandre Julliard : patches: Display multiple check marks for multiple signoffs.

Alexandre Julliard julliard at winehq.org
Fri Jan 27 14:52:47 CST 2017


Module: tools
Branch: master
Commit: 42fe39efa7f267d12ce85b1e13664f8595bc4f4b
URL:    http://source.winehq.org/git/tools.git/?a=commit;h=42fe39efa7f267d12ce85b1e13664f8595bc4f4b

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Fri Jan 27 21:40:59 2017 +0100

patches: Display multiple check marks for multiple signoffs.

Suggested by Bruno Jesus.

Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 patches/update | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/patches/update b/patches/update
index 4f381f0..0d991dc 100755
--- a/patches/update
+++ b/patches/update
@@ -229,7 +229,7 @@ foreach my $file (sort { $patches{$b}->{"order"} <=> $patches{$a}->{"order"} } k
     }
     if (defined($patch->{"signoff"}))
     {
-        printf INDEX "<td class=\"checkmark\" onclick=\"toggle_display('$file.signoff')\">✓</td>";
+        printf INDEX "<td class=\"checkmark\" onclick=\"toggle_display('$file.signoff')\">%s</td>", "✓" x @{$patch->{"signoff"}};
     }
     else
     {




More information about the wine-cvs mailing list