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

Loading…
Cancel
Save