@@ -114,22 +114,22 @@ def update_sort_indicator(logical_index, order):
114
114
icon_dir = os .path .join (self ._rospack .get_path ('rqt_gui' ), 'resource' , 'icons' )
115
115
self .add_exclude_button .setIcon (QIcon .fromTheme ('list-add' , QIcon (QPixmap (os .path .join (icon_dir , 'list-add.png' )))))
116
116
self .add_highlight_button .setIcon (QIcon .fromTheme ('list-add' , QIcon (QPixmap (os .path .join (icon_dir , 'list-add.png' )))))
117
- self .pause_button .setIcon (QIcon .fromTheme ('media-playback-pause' , QIcon (QPixmap (os .path .join (icon_dir , 'media-playback-pause.png' ))))
117
+ self .pause_button .setIcon (QIcon .fromTheme ('media-playback-pause' , QIcon (QPixmap (os .path .join (icon_dir , 'media-playback-pause.png' )))))
118
118
if not self .pause_button .icon ().isNull ():
119
119
self .pause_button .setText ('' )
120
- self .record_button .setIcon (QIcon .fromTheme ('media-record' , QIcon (QPixmap (os .path .join (icon_dir , 'media-record.png' ))))
120
+ self .record_button .setIcon (QIcon .fromTheme ('media-record' , QIcon (QPixmap (os .path .join (icon_dir , 'media-record.png' )))))
121
121
if not self .record_button .icon ().isNull ():
122
122
self .record_button .setText ('' )
123
- self .load_button .setIcon (QIcon .fromTheme ('document-open' , QIcon (QPixmap (os .path .join (icon_dir , 'document-open.png' ))))
123
+ self .load_button .setIcon (QIcon .fromTheme ('document-open' , QIcon (QPixmap (os .path .join (icon_dir , 'document-open.png' )))))
124
124
if not self .load_button .icon ().isNull ():
125
125
self .load_button .setText ('' )
126
- self .save_button .setIcon (QIcon .fromTheme ('document-save' , QIcon (QPixmap (os .path .join (icon_dir , 'document-save.png' ))))
126
+ self .save_button .setIcon (QIcon .fromTheme ('document-save' , QIcon (QPixmap (os .path .join (icon_dir , 'document-save.png' )))))
127
127
if not self .save_button .icon ().isNull ():
128
128
self .save_button .setText ('' )
129
- self .clear_button .setIcon (QIcon .fromTheme ('edit-clear' , QIcon (QPixmap (os .path .join (icon_dir , 'edit-clear.png' ))))
129
+ self .clear_button .setIcon (QIcon .fromTheme ('edit-clear' , QIcon (QPixmap (os .path .join (icon_dir , 'edit-clear.png' )))))
130
130
if not self .clear_button .icon ().isNull ():
131
131
self .clear_button .setText ('' )
132
- self .highlight_exclude_button .setIcon (QIcon .fromTheme ('format-text-strikethrough' , QIcon (QPixmap (os .path .join (icon_dir , 'format-text-strikethrough.png' ))))
132
+ self .highlight_exclude_button .setIcon (QIcon .fromTheme ('format-text-strikethrough' , QIcon (QPixmap (os .path .join (icon_dir , 'format-text-strikethrough.png' )))))
133
133
134
134
self .pause_button .clicked [bool ].connect (self ._handle_pause_clicked )
135
135
self .record_button .clicked [bool ].connect (self ._handle_record_clicked )
0 commit comments