128 if self.mode in ("incoming", "outgoing"): |
128 if self.mode in ("incoming", "outgoing"): |
129 args.append("--newest-first") |
129 args.append("--newest-first") |
130 if self.mode == "log": |
130 if self.mode == "log": |
131 args.append('--copies') |
131 args.append('--copies') |
132 args.append('--style') |
132 args.append('--style') |
133 if self.vcs.versionStr >= "1.8": |
133 if self.vcs.version >= (1, 8): |
134 args.append(os.path.join(os.path.dirname(__file__), |
134 args.append(os.path.join(os.path.dirname(__file__), |
135 "styles", "logDialogBookmark.style")) |
135 "styles", "logDialogBookmark.style")) |
136 else: |
136 else: |
137 args.append(os.path.join(os.path.dirname(__file__), |
137 args.append(os.path.join(os.path.dirname(__file__), |
138 "styles", "logDialog.style")) |
138 "styles", "logDialog.style")) |