show also time and year in date column in search results
This commit is contained in:
		
							parent
							
								
									0c659276d2
								
							
						
					
					
						commit
						e0feb7e57d
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -326,7 +326,7 @@ class HistoryWindow:
 | 
				
			||||||
		# also do we need show at all?
 | 
							# also do we need show at all?
 | 
				
			||||||
		for row in results:
 | 
							for row in results:
 | 
				
			||||||
			local_time = time.localtime(row[1])
 | 
								local_time = time.localtime(row[1])
 | 
				
			||||||
			tim = time.strftime('%x', local_time)
 | 
								tim = time.strftime('%c', local_time)
 | 
				
			||||||
			model.append((row[0], tim, row[4]))
 | 
								model.append((row[0], tim, row[4]))
 | 
				
			||||||
			
 | 
								
 | 
				
			||||||
	def on_results_treeview_row_activated(self, widget, path, column):
 | 
						def on_results_treeview_row_activated(self, widget, path, column):
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue