mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-04-29 22:24:32 +02:00
7.79
FileSplitter/Merger dialog no modal (you can continue using MegaBasterd)
This commit is contained in:
parent
def4832548
commit
224dd4002f
2
pom.xml
2
pom.xml
@ -3,7 +3,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.tonikelope</groupId>
|
||||
<artifactId>MegaBasterd</artifactId>
|
||||
<version>7.78</version>
|
||||
<version>7.79</version>
|
||||
<packaging>jar</packaging>
|
||||
<repositories>
|
||||
<repository>
|
||||
|
@ -69,7 +69,7 @@ import javax.swing.UIManager;
|
||||
*/
|
||||
public final class MainPanel {
|
||||
|
||||
public static final String VERSION = "7.78";
|
||||
public static final String VERSION = "7.79";
|
||||
public static final boolean FORCE_SMART_PROXY = false; //TRUE FOR DEBUGING SMART PROXY
|
||||
public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
|
||||
public static final int DEFAULT_BYTE_BUFFER_SIZE = 16 * 1024;
|
||||
|
@ -1460,7 +1460,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
|
||||
private void split_file_menuActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_split_file_menuActionPerformed
|
||||
// TODO add your handling code here:
|
||||
FileSplitterDialog dialog = new FileSplitterDialog(this, true);
|
||||
FileSplitterDialog dialog = new FileSplitterDialog(this, false);
|
||||
|
||||
dialog.setLocationRelativeTo(this);
|
||||
|
||||
@ -1470,7 +1470,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
private void merge_file_menuActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_merge_file_menuActionPerformed
|
||||
// TODO add your handling code here:
|
||||
|
||||
FileMergerDialog dialog = new FileMergerDialog(this, true);
|
||||
FileMergerDialog dialog = new FileMergerDialog(this, false);
|
||||
|
||||
dialog.setLocationRelativeTo(this);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user