Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spark update and correction #844

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
ac5d1ae
Update Default.java
Will-LWE Jul 17, 2023
be4d4a2
Update Enterprise.java
Will-LWE Jul 17, 2023
913c5ef
Update default.properties
Will-LWE Jul 17, 2023
d9d2fd4
Update ContactList.java
Will-LWE Jul 17, 2023
daf10d4
Update BookmarkPlugin.java
Will-LWE Jul 17, 2023
d14f7ae
Update PluginViewer.java
Will-LWE Jul 17, 2023
7340e4d
Update PreferenceDialog.java
Will-LWE Jul 17, 2023
7f661b7
Update VCardEditor.java
Will-LWE Jul 17, 2023
eff6d58
Update BroadcastHistoryFrame.java
Will-LWE Jul 17, 2023
8f2defc
Update ChatFrame.java
Will-LWE Jul 17, 2023
50f86c9
Update MainWindow.java
Will-LWE Jul 17, 2023
aa4a6a8
Update BroadcastDialog.java
Will-LWE Jul 17, 2023
3b3c396
Update ConferenceRoomBrowser.java
Will-LWE Jul 17, 2023
4016632
Update VCardEditor.java
Will-LWE Jul 17, 2023
0516a1d
Update InvitationDialog.java
Will-LWE Jul 17, 2023
fe43f60
Update RoomCreationDialog.java
Will-LWE Jul 17, 2023
9097187
Update GroupChatParticipantList.java
Will-LWE Jul 17, 2023
9a6b6d0
Update GroupChatRoom.java
Will-LWE Jul 17, 2023
f4dee50
Update DataFormDialog.java
Will-LWE Jul 17, 2023
650d4fb
Update HistoryTranscript.java
Will-LWE Jul 17, 2023
39e67d4
Update ScratchPadPlugin.java
Will-LWE Jul 17, 2023
a0b125c
Update UserSearchService.java
Will-LWE Jul 17, 2023
19ddc1e
Update ContactInfoWindow.java
Will-LWE Jul 17, 2023
1bb8727
Update VCardEditor.java
Will-LWE Jul 17, 2023
9bc975b
Update VCardManager.java
Will-LWE Jul 17, 2023
0f93ac6
Add files via upload
Will-LWE Jul 17, 2023
19db49a
Add files via upload
Will-LWE Jul 17, 2023
7019c03
Add files via upload
Will-LWE Jul 17, 2023
d8e411a
Add files via upload
Will-LWE Jul 17, 2023
4c56efd
Update otrplugin_i18n_fr.properties
Will-LWE Jul 17, 2023
ec20485
Update roar_i18n_fr.properties
Will-LWE Jul 17, 2023
85952f4
Update sip_spark_i18n_fr.properties
Will-LWE Jul 17, 2023
66e7d2c
Update spellchecker_i18n_fr.properties
Will-LWE Jul 17, 2023
0b4f9b4
Add files via upload
Will-LWE Jul 17, 2023
4ef9788
Update transferguard_i18n_fr.properties
Will-LWE Jul 17, 2023
fc63fe1
Update spark_i18n_fr.properties
Will-LWE Jul 17, 2023
1976cf9
Update tictactoe_i18n_fr.properties
Will-LWE Jul 17, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions core/src/main/java/org/jivesoftware/MainWindow.java
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This code relate to : Real time save settings of window size and position.

Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,14 @@ private MainWindow(String title, ImageIcon icon) {
public void componentResized( ComponentEvent e )
{
LayoutSettingsManager.getLayoutSettings().setMainWindowBounds( getBounds() );
LayoutSettingsManager.saveLayoutSettings();
}

@Override
public void componentMoved( ComponentEvent e )
{
LayoutSettingsManager.getLayoutSettings().setMainWindowBounds( getBounds() );
LayoutSettingsManager.saveLayoutSettings();
}
} );

Expand Down