1
0
Fork 0
mirror of synced 2024-05-03 03:52:58 +12:00
This commit is contained in:
Rafał Mikrut 2024-02-15 21:14:01 +01:00
parent 062785c008
commit 38553afe93
6 changed files with 9 additions and 6 deletions

View file

@ -11,6 +11,6 @@ This program is free to use and will always be.
<property name="license-type">mit-x11</property>
<property name="logo-icon-name">help-about-symbolic</property>
<property name="program-name">Czkawka</property>
<property name="version">6.1.0</property>
<property name="version">7.0.0</property>
</object>
</interface>

View file

@ -688,7 +688,7 @@
(5,177,"GtkWidget","focusable","1",None,None,None,None,None,None,None,None,None),
(5,177,"GtkWidget","hexpand","1",None,None,None,None,None,None,None,None,None),
(5,178,"GtkEditable","editable","0",None,None,None,None,None,None,None,None,None),
(5,178,"GtkEditable","text","Czkawka 6.1.0",1,None,None,None,None,None,None,None,None),
(5,178,"GtkEditable","text","Czkawka 7.0.0",1,None,None,None,None,None,None,None,None),
(5,178,"GtkEditable","xalign","1",None,None,None,None,None,None,None,None,None),
(5,178,"GtkEntry","has-frame","0",None,None,None,None,None,None,None,None,None),
(5,178,"GtkWidget","focusable","1",None,None,None,None,None,None,None,None,None),

View file

@ -1160,7 +1160,7 @@
<property name="editable">0</property>
<property name="focusable">1</property>
<property name="has-frame">0</property>
<property name="text" translatable="yes">Czkawka 6.1.0</property>
<property name="text" translatable="yes">Czkawka 7.0.0</property>
<property name="xalign">1</property>
</object>
</child>

View file

@ -35,7 +35,7 @@ export component ActionButtons inherits HorizontalLayout {
scan_button := Button {
height: parent.height;
enabled: !scanning && lists_enabled;
visible: !scanning;
visible: !scanning && lists_enabled;
text: "Scan";
clicked => {
root.scanning = true;
@ -60,6 +60,7 @@ export component ActionButtons inherits HorizontalLayout {
}
move_button := Button {
visible: lists_enabled;
height: parent.height;
enabled: !scanning && lists_enabled;
text: "Move";
@ -69,6 +70,7 @@ export component ActionButtons inherits HorizontalLayout {
}
select_button := Button {
visible: lists_enabled;
height: parent.height;
enabled: !scanning && lists_enabled;
text: "Select";
@ -78,6 +80,7 @@ export component ActionButtons inherits HorizontalLayout {
}
delete_button := Button {
visible: lists_enabled;
height: parent.height;
enabled: !scanning && lists_enabled;
text: "Delete";

View file

@ -38,7 +38,7 @@ export component MainList {
out property <length> path_px: 350px;
out property <length> name_px: 100px;
out property <length> mod_px: 150px;
out property <length> size_px: 50px;
out property <length> size_px: 75px;
duplicates := SelectableTableView {
visible: GuiState.active_tab == CurrentTab.DuplicateFiles;

View file

@ -1,3 +1,3 @@
export component Preview inherits Image {
image-rendering: ImageRendering.smooth;
}