mirror of
				https://github.com/MCV-Software/TWBlue.git
				synced 2025-10-30 20:02:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			229 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			229 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # -*- coding: utf-8 -*-
 | |
| from gi.repository import Gtk
 | |
| from base import basePanel
 | |
| 
 | |
| class favsPanel(basePanel):
 | |
|  def __init__(self, parent, name):
 | |
|   super(favsPanel, self).__init__(parent, name)
 | |
|   self.type = "favourites_timeline"
 |