Browse Source

Fix qBittorrent console tab icon and window title

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
92661e1d53
  1. 54
      src/ui/console.ui

54
src/ui/console.ui

@ -1,7 +1,8 @@
<ui version="4.0" > <?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>ConsoleDlg</class> <class>ConsoleDlg</class>
<widget class="QDialog" name="ConsoleDlg" > <widget class="QDialog" name="ConsoleDlg">
<property name="geometry" > <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
@ -9,41 +10,44 @@
<height>497</height> <height>497</height>
</rect> </rect>
</property> </property>
<property name="windowTitle" > <property name="windowTitle">
<string>qBittorrent console</string> <string>qBittorrent log viewer</string>
</property> </property>
<property name="windowIcon" > <property name="windowIcon">
<iconset resource="icons.qrc" >:/Icons/oxygen/log.png</iconset> <iconset resource="../icons.qrc">
<normaloff>:/Icons/oxygen/log.png</normaloff>:/Icons/oxygen/log.png</iconset>
</property> </property>
<layout class="QVBoxLayout" > <layout class="QVBoxLayout">
<item> <item>
<widget class="QTabWidget" name="tabConsole" > <widget class="QTabWidget" name="tabConsole">
<property name="currentIndex" > <property name="currentIndex">
<number>0</number> <number>0</number>
</property> </property>
<widget class="QWidget" name="tab" > <widget class="QWidget" name="tab">
<attribute name="title" > <attribute name="icon">
<string>General</string> <iconset resource="../icons.qrc">
<normaloff>:/Icons/oxygen/log.png</normaloff>:/Icons/oxygen/log.png</iconset>
</attribute> </attribute>
<attribute name="icon" > <attribute name="title">
<iconset resource="icons.qrc" >:/Icons/oxygen/log.png</iconset> <string>General</string>
</attribute> </attribute>
<layout class="QVBoxLayout" > <layout class="QVBoxLayout">
<item> <item>
<widget class="QTextBrowser" name="textConsole" /> <widget class="QTextBrowser" name="textConsole"/>
</item> </item>
</layout> </layout>
</widget> </widget>
<widget class="QWidget" name="tab_2" > <widget class="QWidget" name="tab_2">
<attribute name="title" > <attribute name="icon">
<string>Blocked IPs</string> <iconset resource="../icons.qrc">
<normaloff>:/Icons/oxygen/filter.png</normaloff>:/Icons/oxygen/filter.png</iconset>
</attribute> </attribute>
<attribute name="icon" > <attribute name="title">
<iconset resource="icons.qrc" >:/Icons/filter.png</iconset> <string>Blocked IPs</string>
</attribute> </attribute>
<layout class="QVBoxLayout" > <layout class="QVBoxLayout">
<item> <item>
<widget class="QTextBrowser" name="textBannedPeers" /> <widget class="QTextBrowser" name="textBannedPeers"/>
</item> </item>
</layout> </layout>
</widget> </widget>
@ -52,7 +56,7 @@
</layout> </layout>
</widget> </widget>
<resources> <resources>
<include location="icons.qrc" /> <include location="../icons.qrc"/>
</resources> </resources>
<connections/> <connections/>
</ui> </ui>

Loading…
Cancel
Save