Skip to content

Commit

Permalink
[AD-522] adjust window size and additional settings group label size
Browse files Browse the repository at this point in the history
* additional settings group label size is now the same as other settings group in the same column
  • Loading branch information
alinaliBQ committed Jan 26, 2022
1 parent c7ed031 commit 0aa2052
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/odbc/os/win/src/system/ui/dsn_configuration_window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ namespace ignite
DsnConfigurationWindow::DsnConfigurationWindow(Window* parent, config::Configuration& config):
CustomWindow(parent, "IgniteConfigureDsn", "Configure Amazon DocumentDB DSN Latest"),
//width(360), // original width:360.
height(600), // original height:600
//height(600), // original height:600
width(730), // double the original width
//width(360),
//height(800),
height(515),
connectionSettingsGroupBox(),
tlsSettingsGroupBox(),
tlsCheckBox(),
Expand Down Expand Up @@ -434,7 +434,8 @@ namespace ignite

int DsnConfigurationWindow::CreateAdditionalSettingsGroup(int posX, int posY, int sizeX)
{
enum { LABEL_WIDTH = 130 }; // -AL- different definition from above. I can also
enum { LABEL_WIDTH = 120 }; // same as SSH settings
//enum { LABEL_WIDTH = 130 }; // -AL- different definition from above. I can also
// change it to the same

int labelPosX = posX + INTERVAL;
Expand Down

0 comments on commit 0aa2052

Please sign in to comment.